diff options
Diffstat (limited to 'debian/upstart')
-rw-r--r-- | debian/upstart | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/upstart b/debian/upstart deleted file mode 100644 index 4ba35bc..0000000 --- a/debian/upstart +++ /dev/null @@ -1,24 +0,0 @@ -description "Windows Azure Linux agent" -author "Ben Howard <ben.howard@canonical.com>" - -start on runlevel [2345] -stop on runlevel [!2345] - -pre-start script - - [ -r /etc/default/walinuxagent ] && . /etc/default/walinuxagent - - if [ "$WALINUXAGENT_ENABLED" != "1" ]; then - stop ; exit 0 - fi - - if [ ! -x /usr/sbin/waagent ]; then - stop ; exit 0 - fi - - #Load the udf module - modprobe -b udf - -end script - -exec /usr/sbin/waagent -daemon |