diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-03-25 11:04:05 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-04-10 23:48:27 +0000 |
commit | 84a3d292f81a5fa2c827eca3b31501f2c3d973e5 (patch) | |
tree | 165d3033645468cfa6b852e88f8377c2d3408967 /debian/upstart | |
parent | 2761a00bd67c512b1e47619f6f945ba2e4c7f83c (diff) | |
parent | 5b26ef33dbffbb2cebbfb996f8799d131dc842ae (diff) | |
download | vyos-walinuxagent-84a3d292f81a5fa2c827eca3b31501f2c3d973e5.tar.gz vyos-walinuxagent-84a3d292f81a5fa2c827eca3b31501f2c3d973e5.zip |
Import patches-applied version 2.0.12-0ubuntu1 to applied/ubuntu/vivid-proposed
Imported using git-ubuntu import.
Changelog parent: 2761a00bd67c512b1e47619f6f945ba2e4c7f83c
Unapplied parent: 5b26ef33dbffbb2cebbfb996f8799d131dc842ae
New changelog entries:
* New upstream release.
* Added debian/watch for easier maintenance.
* Fix regression of missing dataloss warning by adding systemd unit file.
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 |