mirror of
https://github.com/clearlinux/WALinuxAgent.git
synced 2026-09-03 12:21:33 +00:00
27 lines
474 B
Plaintext
27 lines
474 B
Plaintext
description "Microsoft 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
|
|
|
|
respawn
|