diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-10-12 13:33:16 -0700 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-10-12 21:43:59 +0000 |
commit | 0432a68d35212b2cc8b9fcd96b3c9ede35edc766 (patch) | |
tree | 293a799767ff366f22ad3ae1afe2cf1fdd87ec95 | |
parent | 7a87eeff84a5126739f53a65ca2f490bcb09f820 (diff) | |
parent | 021bfefee3fe2cabb8b0cfc07c818a49e191cf7f (diff) | |
download | vyos-walinuxagent-0432a68d35212b2cc8b9fcd96b3c9ede35edc766.tar.gz vyos-walinuxagent-0432a68d35212b2cc8b9fcd96b3c9ede35edc766.zip |
Import patches-applied version 2.1.1-0ubuntu3 to applied/ubuntu/wily-proposed
Imported using git-ubuntu import.
Changelog parent: 7a87eeff84a5126739f53a65ca2f490bcb09f820
Unapplied parent: 021bfefee3fe2cabb8b0cfc07c818a49e191cf7f
New changelog entries:
* Fix typo in d/rules preventing systemd jobs from being enabled (LP:
#1505384).
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 6b2796e..a90e7d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +walinuxagent (2.1.1-0ubuntu3) wily; urgency=medium + + * Fix typo in d/rules preventing systemd jobs from being enabled (LP: + #1505384). + + -- Ben Howard <ben.howard@ubuntu.com> Mon, 12 Oct 2015 13:33:16 -0700 + walinuxagent (2.1.1-0ubuntu2) wily; urgency=medium * Add support for upstart or systemd (LP: #1505001). diff --git a/debian/rules b/debian/rules index 56db7a2..81f338d 100755 --- a/debian/rules +++ b/debian/rules @@ -17,7 +17,9 @@ get-packaged-orig-source: override_dh_installinit: dh_installinit --no-restart-on-upgrade --name walinuxagent + dh_installinit --no-restart-on-upgrade --name ephemeral-disk-warning override_dh_systemd_enable: - dh_systemd_enable --name walinuxagent waxlinuxagent.service + dh_systemd_enable --name walinuxagent walinuxagent.service + dh_systemd_enable --name ephemeral-disk-warning ephemeral-disk-warning.service |