From: Guillaume Pellerin Date: Wed, 20 Jan 2016 18:06:53 +0000 (+0100) Subject: fix composition start / stop X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=57a0fc05ac3e006d79375224ff817aa5dcbb479e;p=mezzo.git fix composition start / stop --- diff --git a/init.sh.example b/init.sh.example index bcd93942..c363479a 100644 --- a/init.sh.example +++ b/init.sh.example @@ -2,8 +2,8 @@ ### BEGIN INIT INFO # Provides: %s -# Required-Start: $docker -# Required-Stop: $docker +# Required-Start: docker +# Required-Stop: docker # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Docker Services diff --git a/install_sysv.py b/install_sysv.py index 14b3d5d5..864aaf06 100755 --- a/install_sysv.py +++ b/install_sysv.py @@ -22,6 +22,6 @@ f.write(rules) f.close() os.system('chmod 755 ' + service) -os.system('update-rc.d ' + name + ' defaults 90 10') +os.system('update-rc.d ' + name + ' defaults 90') print 'done'