diff options
Diffstat (limited to 'debian/postinst')
-rwxr-xr-x | debian/postinst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/postinst b/debian/postinst index 6310acf..b181533 100755 --- a/debian/postinst +++ b/debian/postinst @@ -26,12 +26,12 @@ custodian-queue --flush || true # # 2. If we have agents then restart them # -if [ -d /etc/service ]; then - echo "Restarting services" - for i in /etc/service/custodian-agent*; do +for i in /etc/service/custodian-agent*; do + if [ -d $i ] ; then + echo "Restarting service: $i" sv restart $i - done -fi + fi +done #DEBHELPER# exit 0 |