diff options
author | Ćukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> | 2017-01-16 10:10:41 +0100 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2017-01-17 17:53:13 +0000 |
commit | d064ab0bffd429382ea4fafeb144784d403848bd (patch) | |
tree | 28b0940943acfa742f484c2c0016e8f22c17124c /config | |
parent | 63d399807de30a64456e672063e7c20babf7aadc (diff) | |
download | vyos-walinuxagent-d064ab0bffd429382ea4fafeb144784d403848bd.tar.gz vyos-walinuxagent-d064ab0bffd429382ea4fafeb144784d403848bd.zip |
Import patches-unapplied version 2.2.2-0ubuntu1 to ubuntu/zesty-proposed
Imported using git-ubuntu import.
Changelog parent: 63d399807de30a64456e672063e7c20babf7aadc
New changelog entries:
* New upstream release (LP: #1651128)
- d/patches/fix-auto-update.patch,
d/patches/lp1623570-adjust-walinuxagent-service-after-and-wants.patch:
- Dropped as changes have been applied upstream
- Refreshed debian/patches/disable_import_test.patch
Diffstat (limited to 'config')
-rw-r--r-- | config/alpine/waagent.conf | 74 | ||||
-rw-r--r-- | config/bigip/waagent.conf | 70 | ||||
-rw-r--r-- | config/clearlinux/waagent.conf | 72 | ||||
-rw-r--r-- | config/coreos/waagent.conf | 27 | ||||
-rw-r--r-- | config/freebsd/waagent.conf | 27 | ||||
-rw-r--r-- | config/suse/waagent.conf | 44 | ||||
-rw-r--r-- | config/ubuntu/waagent.conf | 27 | ||||
-rw-r--r-- | config/waagent.conf | 27 |
8 files changed, 297 insertions, 71 deletions
diff --git a/config/alpine/waagent.conf b/config/alpine/waagent.conf new file mode 100644 index 0000000..1161552 --- /dev/null +++ b/config/alpine/waagent.conf @@ -0,0 +1,74 @@ +# +# Windows Azure Linux Agent Configuration +# + +# Enable instance creation +Provisioning.Enabled=y + +# Password authentication for root account will be unavailable. +Provisioning.DeleteRootPassword=y + +# Generate fresh host key pair. +Provisioning.RegenerateSshHostKeyPair=y + +# Supported values are "rsa", "dsa" and "ecdsa". +Provisioning.SshHostKeyPairType=rsa + +# Monitor host name changes and publish changes via DHCP requests. +Provisioning.MonitorHostName=n + +# Decode CustomData from Base64. +Provisioning.DecodeCustomData=y + +# Execute CustomData after provisioning. +Provisioning.ExecuteCustomData=y + +# Format if unformatted. If 'n', resource disk will not be mounted. +ResourceDisk.Format=y + +# 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 + +# Create and use swapfile on resource disk. +ResourceDisk.EnableSwap=n + +# Size of the swapfile. +ResourceDisk.SwapSizeMB=0 + +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + +# Respond to load balancer probes if requested by Windows Azure. +LBProbeResponder=y + +# Enable logging to serial console (y|n) +# When stdout is not enough... +# 'y' if not set +Logs.Console=y + +# Enable verbose logging (y|n) +Logs.Verbose=n + +# Preferred network interface to communicate with Azure platform +Network.Interface=eth0 + +# Root device timeout in seconds. +OS.RootDeviceScsiTimeout=300 + +# If "None", the system default version is used. +OS.OpensslPath=None + +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/bigip/waagent.conf b/config/bigip/waagent.conf new file mode 100644 index 0000000..06e6931 --- /dev/null +++ b/config/bigip/waagent.conf @@ -0,0 +1,70 @@ +# +# Windows Azure Linux Agent Configuration +# + +# Specified program is invoked with the argument "Ready" when we report ready status +# to the endpoint server. +Role.StateConsumer=None + +# Specified program is invoked with XML file argument specifying role +# configuration. +Role.ConfigurationConsumer=None + +# Specified program is invoked with XML file argument specifying role topology. +Role.TopologyConsumer=None + +# Enable instance creation +Provisioning.Enabled=y + +# Password authentication for root account will be unavailable. +Provisioning.DeleteRootPassword=y + +# Generate fresh host key pair. +Provisioning.RegenerateSshHostKeyPair=y + +# Supported values are "rsa", "dsa" and "ecdsa". +Provisioning.SshHostKeyPairType=rsa + +# Monitor host name changes and publish changes via DHCP requests. +# waagent cannot do this on BIG-IP VE +Provisioning.MonitorHostName=n + +# Format if unformatted. If 'n', resource disk will not be mounted. +ResourceDisk.Format=y + +# 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 + +# Create and use swapfile on resource disk. +ResourceDisk.EnableSwap=n + +# Size of the swapfile. +ResourceDisk.SwapSizeMB=0 + +# Respond to load balancer probes if requested by Windows Azure. +LBProbeResponder=y + +# Enable verbose logging (y|n) +Logs.Verbose=n + +# Root device timeout in seconds. +OS.RootDeviceScsiTimeout=300 + +# If "None", the system default version is used. +OS.OpensslPath=None + +# Specify location of waagent lib dir on BIG-IP +Lib.Dir=/shared/vadc/azure/waagent/ + +# Specify location of sshd config file on BIG-IP +OS.SshdConfigPath=/config/ssh/sshd_config + +# Disable RDMA management and set up +OS.EnableRDMA=n + +# Enable or disable goal state processing auto-update, default is enabled +AutoUpdate.Enabled=y
\ No newline at end of file diff --git a/config/clearlinux/waagent.conf b/config/clearlinux/waagent.conf new file mode 100644 index 0000000..c0d17a8 --- /dev/null +++ b/config/clearlinux/waagent.conf @@ -0,0 +1,72 @@ +# +# Microsoft Azure Linux Agent Configuration +# + +# Specified program is invoked with the argument "Ready" when we report ready status +# to the endpoint server. +Role.StateConsumer=None + +# Specified program is invoked with XML file argument specifying role +# configuration. +Role.ConfigurationConsumer=None + +# Specified program is invoked with XML file argument specifying role topology. +Role.TopologyConsumer=None + +# Enable instance creation +Provisioning.Enabled=y + +# Password authentication for root account will be unavailable. +Provisioning.DeleteRootPassword=y + +# Generate fresh host key pair. +Provisioning.RegenerateSshHostKeyPair=y + +# Supported values are "rsa", "dsa" and "ecdsa". +Provisioning.SshHostKeyPairType=rsa + +# Monitor host name changes and publish changes via DHCP requests. +Provisioning.MonitorHostName=y + +# Decode CustomData from Base64. +Provisioning.DecodeCustomData=y + +# Execute CustomData after provisioning. +Provisioning.ExecuteCustomData=n + +# Allow reset password of sys user +Provisioning.AllowResetSysUser=n + +# Format if unformatted. If 'n', resource disk will not be mounted. +ResourceDisk.Format=y + +# 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 + +# Create and use swapfile on resource disk. +ResourceDisk.EnableSwap=n + +# Size of the swapfile. +ResourceDisk.SwapSizeMB=0 + +# Enable verbose logging (y|n) +Logs.Verbose=n + +# Root device timeout in seconds. +OS.RootDeviceScsiTimeout=300 + +# If "None", the system default version is used. +OS.OpensslPath=None + +# Enable or disable self-update, default is enabled +AutoUpdate.Enabled=y +AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/coreos/waagent.conf b/config/coreos/waagent.conf index 05095f3..323331f 100644 --- a/config/coreos/waagent.conf +++ b/config/coreos/waagent.conf @@ -2,17 +2,6 @@ # Microsoft Azure Linux Agent Configuration # -# Specified program is invoked with the argument "Ready" when we report ready status -# to the endpoint server. -Role.StateConsumer=None - -# Specified program is invoked with XML file argument specifying role -# configuration. -Role.ConfigurationConsumer=None - -# Specified program is invoked with XML file argument specifying role topology. -Role.TopologyConsumer=None - # Enable instance creation Provisioning.Enabled=y @@ -59,6 +48,9 @@ ResourceDisk.EnableSwap=n # Size of the swapfile. ResourceDisk.SwapSizeMB=0 +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + # Respond to load balancer probes if requested by Windows Azure. LBProbeResponder=y @@ -96,6 +88,13 @@ OS.OpensslPath=None # Enable RDMA management and set up, should only be used in HPC images # OS.EnableRDMA=y -# Enable or disable self-update, default is enabled -AutoUpdate.Enabled=y -AutoUpdate.GAFamily=Prod +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/freebsd/waagent.conf b/config/freebsd/waagent.conf index 907b219..0589831 100644 --- a/config/freebsd/waagent.conf +++ b/config/freebsd/waagent.conf @@ -2,17 +2,6 @@ # Microsoft Azure Linux Agent Configuration # -# Specified program is invoked with the argument "Ready" when we report ready status -# to the endpoint server. -Role.StateConsumer=None - -# Specified program is invoked with XML file argument specifying role -# configuration. -Role.ConfigurationConsumer=None - -# Specified program is invoked with XML file argument specifying role topology. -Role.TopologyConsumer=None - # Enable instance creation Provisioning.Enabled=y @@ -56,6 +45,9 @@ ResourceDisk.EnableSwap=n # Size of the swapfile. ResourceDisk.SwapSizeMB=0 +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + # Enable verbose logging (y|n) Logs.Verbose=n @@ -94,6 +86,13 @@ OS.SudoersDir=/usr/local/etc/sudoers.d # Enable RDMA management and set up, should only be used in HPC images # OS.EnableRDMA=y -# Enable or disable self-update, default is enabled -AutoUpdate.Enabled=y -AutoUpdate.GAFamily=Prod +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/suse/waagent.conf b/config/suse/waagent.conf index 8ea3195..ca53acf 100644 --- a/config/suse/waagent.conf +++ b/config/suse/waagent.conf @@ -2,17 +2,6 @@ # Microsoft Azure Linux Agent Configuration # -# Specified program is invoked with the argument "Ready" when we report ready status -# to the endpoint server. -Role.StateConsumer=None - -# Specified program is invoked with XML file argument specifying role -# configuration. -Role.ConfigurationConsumer=None - -# Specified program is invoked with XML file argument specifying role topology. -Role.TopologyConsumer=None - # Enable instance creation Provisioning.Enabled=y @@ -48,7 +37,7 @@ ResourceDisk.Format=y # File system on the resource disk # Typically ext3 or ext4. FreeBSD images should use 'ufs2' here. -ResourceDisk.Filesystem=ext3 +ResourceDisk.Filesystem=ext4 # Mount point for the resource disk ResourceDisk.MountPoint=/mnt/resource @@ -59,6 +48,9 @@ ResourceDisk.EnableSwap=n # Size of the swapfile. ResourceDisk.SwapSizeMB=0 +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + # Respond to load balancer probes if requested by Microsoft Azure. LBProbeResponder=y @@ -78,9 +70,31 @@ OS.OpensslPath=None # Detect Scvmm environment, default is n # DetectScvmmEnv=n +# +# Lib.Dir=/var/lib/waagent + +# +# DVD.MountPoint=/mnt/cdrom/secure + +# +# Pid.File=/var/run/waagent.pid + +# +# Extension.LogDir=/var/log/azure + +# +# Home.Dir=/home + # Enable RDMA management and set up, should only be used in HPC images # OS.EnableRDMA=y -# Enable or disable self-update, default is enabled -AutoUpdate.Enabled=y -AutoUpdate.GAFamily=Prod +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/ubuntu/waagent.conf b/config/ubuntu/waagent.conf index ca68044..dbc80fc 100644 --- a/config/ubuntu/waagent.conf +++ b/config/ubuntu/waagent.conf @@ -2,17 +2,6 @@ # Microsoft Azure Linux Agent Configuration # -# Specified program is invoked with the argument "Ready" when we report ready status -# to the endpoint server. -Role.StateConsumer=None - -# Specified program is invoked with XML file argument specifying role -# configuration. -Role.ConfigurationConsumer=None - -# Specified program is invoked with XML file argument specifying role topology. -Role.TopologyConsumer=None - # Enable instance creation Provisioning.Enabled=n @@ -59,6 +48,9 @@ ResourceDisk.EnableSwap=n # Size of the swapfile. ResourceDisk.SwapSizeMB=0 +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + # Respond to load balancer probes if requested by Microsoft Azure. LBProbeResponder=y @@ -81,6 +73,13 @@ OS.OpensslPath=None # Enable RDMA management and set up, should only be used in HPC images # OS.EnableRDMA=y -# Enable or disable self-update, default is enabled -AutoUpdate.Enabled=y -AutoUpdate.GAFamily=Prod +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n diff --git a/config/waagent.conf b/config/waagent.conf index c28a651..8a69462 100644 --- a/config/waagent.conf +++ b/config/waagent.conf @@ -2,17 +2,6 @@ # Microsoft Azure Linux Agent Configuration # -# Specified program is invoked with the argument "Ready" when we report ready status -# to the endpoint server. -Role.StateConsumer=None - -# Specified program is invoked with XML file argument specifying role -# configuration. -Role.ConfigurationConsumer=None - -# Specified program is invoked with XML file argument specifying role topology. -Role.TopologyConsumer=None - # Enable instance creation Provisioning.Enabled=y @@ -59,6 +48,9 @@ ResourceDisk.EnableSwap=n # Size of the swapfile. ResourceDisk.SwapSizeMB=0 +# Comma-seperated list of mount options. See man(8) for valid options. +ResourceDisk.MountOptions=None + # Enable verbose logging (y|n) Logs.Verbose=n @@ -93,6 +85,13 @@ OS.OpensslPath=None # Enable RDMA management and set up, should only be used in HPC images # OS.EnableRDMA=y -# Enable or disable self-update, default is enabled -AutoUpdate.Enabled=y -AutoUpdate.GAFamily=Prod +# Enable or disable goal state processing auto-update, default is enabled +# AutoUpdate.Enabled=y + +# Determine the update family, this should not be changed +# AutoUpdate.GAFamily=Prod + +# Determine if the overprovisioning feature is enabled. If yes, hold extension +# handling until inVMArtifactsProfile.OnHold is false. +# Default is disabled +# EnableOverProvisioning=n |