diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2014-03-18 17:14:41 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2014-03-18 23:38:27 +0000 |
commit | 5134a541fbd90b8561eb0605c9454e64fba7f37d (patch) | |
tree | e4743c9c9f7ed8c1180373050e266db263745798 | |
parent | 93f1c200eaf129d6a9db5e33eb2875c54ea0221d (diff) | |
download | vyos-walinuxagent-5134a541fbd90b8561eb0605c9454e64fba7f37d.tar.gz vyos-walinuxagent-5134a541fbd90b8561eb0605c9454e64fba7f37d.zip |
Disable provisioning
Gbp-Pq: disable_provisioning.patch.
-rw-r--r-- | config/waagent.conf | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/config/waagent.conf b/config/waagent.conf index 364c2c1..1eaaae4 100644 --- a/config/waagent.conf +++ b/config/waagent.conf @@ -1,6 +1,9 @@ # # Windows Azure Linux Agent Configuration # +# Ubuntu uses Cloud-init to provision on Windows Azure. This configuration +# file is used to ensure that cloud-init does the prep of the disk +# # Specified program is invoked with the argument "Ready" when we report ready status # to the endpoint server. @@ -14,29 +17,29 @@ 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 -# ount point for the resource disk -ResourceDisk.MountPoint=/mnt/resource +# Mount point for the resource disk +ResourceDisk.MountPoint=/mnt # Create and use swapfile on resource disk. ResourceDisk.EnableSwap=n |