Skip to content

Commit

Permalink
Fix minor packaging issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
liske committed Jan 31, 2016
1 parent 430e89a commit 9e41f70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ nag2mqtt (0.1) unstable; urgency=low

* Initial Release.

-- Thomas Liske <[email protected]> Sun, 31 Jan 2016 18:16:14 +0100
-- Thomas Liske <[email protected]> Sun, 31 Jan 2016 22:32:23 +0100
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Vcs-Git: https://github.com/DE-IBH/nag2mqtt.git
Vcs-Browser: https://github.com/DE-IBH/nag2mqtt

Package: nag2mqtt
Architecture: all
Depends: ${misc:Depends}
Architecture: any
Depends: libanyevent-perl, libanyevent-mqtt-perl, libjson-perl, liblinux-inotify2-perl, ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
Description: Nagios event broker to MQTT gateway
nag2mqtt consists of a Nagios Event Broker (NEB) module and a small perl
daemon. The NEB module publishes all check results in the local filesystem
Expand Down
4 changes: 2 additions & 2 deletions debian/init.d
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ do_start()
# || return 2
# The above code will not work for interpreted scripts, use the next
# six lines below instead (Ref: #643337, start-stop-daemon(8) )
start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON \
start-stop-daemon --start --background --quiet --pidfile $PIDFILE --startas $DAEMON \
--name $NAME --chuid $USERNAME --test > /dev/null \
|| return 1
start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON \
start-stop-daemon --start --background --quiet --pidfile $PIDFILE --startas $DAEMON \
--name $NAME --chuid $USERNAME -- $DAEMON_ARGS \
|| return 2

Expand Down

0 comments on commit 9e41f70

Please sign in to comment.