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 | f4f9d7e17f1638d9499df663d515508f04682dc1 (patch) | |
tree | 42e0d562a1cc1bb10ebfe297f3a8bf7669963fb9 | |
parent | 4a5e1f2930d7642eb2035de39f895118dd218b3f (diff) | |
download | vyos-walinuxagent-f4f9d7e17f1638d9499df663d515508f04682dc1.tar.gz vyos-walinuxagent-f4f9d7e17f1638d9499df663d515508f04682dc1.zip |
Disable provisioning components in config
Gbp-Pq: config_for_cloud-init.patch.
-rw-r--r-- | waagent | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -2222,6 +2222,7 @@ exit 0 WaagentConf = """\ # # Windows Azure Linux Agent Configuration +# This configuration is modified to work with Cloud-init # Role.StateConsumer=None # Specified program is invoked with "Ready" or "Shutdown". @@ -2230,15 +2231,15 @@ Role.StateConsumer=None # Specified program is invoked with "Rea Role.ConfigurationConsumer=None # Specified program is invoked with XML file argument specifying role configuration. Role.TopologyConsumer=None # Specified program is invoked with XML file argument specifying role topology. -Provisioning.Enabled=y # -Provisioning.DeleteRootPassword=y # Password authentication for root account will be unavailable. -Provisioning.RegenerateSshHostKeyPair=y # Generate fresh host key pair. +Provisioning.Enabled=n # +Provisioning.DeleteRootPassword=n # Password authentication for root account will be unavailable. +Provisioning.RegenerateSshHostKeyPair=n # Generate fresh host key pair. Provisioning.SshHostKeyPairType=rsa # Supported values are "rsa", "dsa" and "ecdsa". -Provisioning.MonitorHostName=y # Monitor host name changes and publish changes via DHCP requests. +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.Filesystem=ext4 # -ResourceDisk.MountPoint=/mnt/resource # +ResourceDisk.MountPoint=/mnt # ResourceDisk.EnableSwap=n # Create and use swapfile on resource disk. ResourceDisk.SwapSizeMB=0 # Size of the swapfile. |