diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2013-09-26 08:21:35 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2013-09-30 19:23:28 +0000 |
commit | 752c41b017ad0da01408cd8af5eb019b3004b81d (patch) | |
tree | 5fc7d1199943624842b06138c78d07491125343e /debian | |
parent | 3b8f09910bb04cad24d151aff11c2908c5769125 (diff) | |
download | vyos-walinuxagent-752c41b017ad0da01408cd8af5eb019b3004b81d.tar.gz vyos-walinuxagent-752c41b017ad0da01408cd8af5eb019b3004b81d.zip |
Import patches-unapplied version 1.3.2-0ubuntu5 to ubuntu/saucy-proposed
Imported using git-ubuntu import.
Changelog parent: 3b8f09910bb04cad24d151aff11c2908c5769125
New changelog entries:
* disable ephemeral disk formating by default (LP: #1231490)
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/patches/disable_disk_formating.patch | 16 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 23 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 68ace8c..2a66fee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +walinuxagent (1.3.2-0ubuntu5) saucy; urgency=low + + * disable ephemeral disk formating by default (LP: #1231490) + + -- Ben Howard <ben.howard@ubuntu.com> Thu, 26 Sep 2013 08:21:35 -0600 + walinuxagent (1.3.2-0ubuntu4) saucy; urgency=low * debian/patches/shadow_permissions.patch: apply the appropriate diff --git a/debian/patches/disable_disk_formating.patch b/debian/patches/disable_disk_formating.patch new file mode 100644 index 0000000..feef91b --- /dev/null +++ b/debian/patches/disable_disk_formating.patch @@ -0,0 +1,16 @@ +Description: Disable disk formatting/mounting of ephemeral storage + Disabling this code segment as redundant with Cloud Init +Bug: https://bugs.launchpad.net/ubuntu/+bug/1231490 +Author: Ben Howard +Last-Update: 2013-09-26 +--- a/waagent ++++ b/waagent +@@ -2237,7 +2237,7 @@ Provisioning.RegenerateSshHostKeyPair=n + Provisioning.SshHostKeyPairType=rsa # Supported values are "rsa", "dsa" and "ecdsa". + Provisioning.MonitorHostName=n # Monitor host name changes and publish changes via DHCP requests. + +-ResourceDisk.Format=y # Format if unformatted. If 'n', resource disk will not be mounted. ++ResourceDisk.Format=n # Format if unformatted. If 'n', resource disk will not be mounted. + ResourceDisk.Filesystem=ext4 # + ResourceDisk.MountPoint=/mnt # + ResourceDisk.EnableSwap=n # Create and use swapfile on resource disk. diff --git a/debian/patches/series b/debian/patches/series index d355c91..25d7a66 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -2,3 +2,4 @@ no_udev_rule_removal.patch config_for_cloud-init.patch verbose_logging.patch shadow_permissions.patch +disable_disk_formating.patch |