diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-04-15 10:59:38 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-04-15 21:53:50 +0000 |
commit | b44b36c842c3a23984f60d624d266919aa574e59 (patch) | |
tree | 11da3041a2aad62c01198eff631dfd67f0c00075 | |
parent | cb7c3d4e33487609970913992a4cf462463c3517 (diff) | |
download | vyos-walinuxagent-b44b36c842c3a23984f60d624d266919aa574e59.tar.gz vyos-walinuxagent-b44b36c842c3a23984f60d624d266919aa574e59.zip |
disable_provisioning.patch
No DEP3 Subject or Description header found
Gbp-Pq: disable_provisioning.patch.
-rw-r--r-- | config/waagent.conf | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/config/waagent.conf b/config/waagent.conf index 6a74125..3d6387b 100644 --- a/config/waagent.conf +++ b/config/waagent.conf @@ -14,30 +14,34 @@ Role.ConfigurationConsumer=None Role.TopologyConsumer=None # Enable instance creation -Provisioning.Enabled=y +Provisioning.Enabled=n # Password authentication for root account will be unavailable. -Provisioning.DeleteRootPassword=y +Provisioning.DeleteRootPassword=n # Generate fresh host key pair. -Provisioning.RegenerateSshHostKeyPair=y +Provisioning.RegenerateSshHostKeyPair=n # Supported values are "rsa", "dsa" and "ecdsa". Provisioning.SshHostKeyPairType=rsa # Monitor host name changes and publish changes via DHCP requests. -Provisioning.MonitorHostName=y +Provisioning.MonitorHostName=n # Format if unformatted. If 'n', resource disk will not be mounted. -ResourceDisk.Format=y +ResourceDisk.Format=n # File system on the resource disk # Typically ext3 or ext4. FreeBSD images should use 'ufs2' here. ResourceDisk.Filesystem=ext4 # Mount point for the resource disk -ResourceDisk.MountPoint=/mnt/resource +ResourceDisk.MountPoint=/mnt +# NOTE: Ubuntu uses Cloud-init for disk-provisioning. This will +# unless you disable Cloud-init disk provisioning. Please see +# /usr/share/doc/walinuxagent/99-cloud-init-disable-diskprovisioning.conf +# # Create and use swapfile on resource disk. ResourceDisk.EnableSwap=n |