summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2012-08-31 15:40:29 -0400
committerScott Moser <smoser@ubuntu.com>2012-08-31 15:40:29 -0400
commitc6e4c646287e26d15b8d2402527e1f77e21113cd (patch)
tree3d286e2598d6dc64f5c7fcdfac4b5185e7313652 /doc
parent53f276c22ef57f49bfae5c6ddc233043d0ef51ad (diff)
parenta90e2802b16b0af7b9cef718d19605e2a0565a8e (diff)
downloadvyos-cloud-init-c6e4c646287e26d15b8d2402527e1f77e21113cd.tar.gz
vyos-cloud-init-c6e4c646287e26d15b8d2402527e1f77e21113cd.zip
usergroup related fixes
- Converted user list to user dict to allow exclusion of the default user on Ubuntu systems via cloud-config (LP: #1041384). - Fixed bug with user creation on Ubuntu where the default user groups are not set properly (LP: #1044044). - Fixed documentation for user creation (LP: #1044508). LP: #1041384, #1044044, #1044508
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/cloud-config-user-groups.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/examples/cloud-config-user-groups.txt b/doc/examples/cloud-config-user-groups.txt
index 04f01719..d0b3e2ff 100644
--- a/doc/examples/cloud-config-user-groups.txt
+++ b/doc/examples/cloud-config-user-groups.txt
@@ -7,6 +7,7 @@ groups:
# add users to the system. Users are added after groups are added.
users:
+ - default
- name: foobar
gecos: Foo B. Bar
primary-group: foobar
@@ -24,12 +25,13 @@ users:
ssh-authorized-keys:
- <ssh pub key 1>
- <ssh pub key 2>
- cloudy:
+ - name: cloudy
gecos: Magic Cloud App Daemon User
inactive: true
system: true
# Valid Values:
+# name: The user's login name
# gecos: The user name's real name, i.e. "Bob B. Smith"
# homedir: Optional. Set to the local path you want to use. Defaults to
# /home/<username>