summaryrefslogtreecommitdiff
path: root/debian/patches/disable_provisioning.patch
blob: 02a90cb86f3b4641e4ff80efee41e676a8caea14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Description: Disable provisioning
 On Ubuntu, provisioning requires cloud-init. We disable all the
 provisioning functions for the agent.
Author: Ben Howard
Last-Update: 2013-07-11
--- 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.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