summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-09-21 15:12:11 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-09-21 15:12:11 -0700
commit009faa0546ffbcadbbcaa9692d6842890e6f2e10 (patch)
tree715d284470c0047a54a58d430de1317376557321 /doc
parent47d9df78264625207342e668a9120fa84b6ad355 (diff)
downloadvyos-cloud-init-009faa0546ffbcadbbcaa9692d6842890e6f2e10.tar.gz
vyos-cloud-init-009faa0546ffbcadbbcaa9692d6842890e6f2e10.zip
Fix some docs + pylint warnings + log on default created in the module.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/cloud-config-user-groups.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/examples/cloud-config-user-groups.txt b/doc/examples/cloud-config-user-groups.txt
index 073fbd8f..1a46c540 100644
--- a/doc/examples/cloud-config-user-groups.txt
+++ b/doc/examples/cloud-config-user-groups.txt
@@ -1,11 +1,11 @@
-# add groups to the system
+# Add groups to the system
# The following example adds the ubuntu group with members foo and bar and
# the group cloud-users.
groups:
- ubuntu: [foo,bar]
- cloud-users
-# add users to the system. Users are added after groups are added.
+# Add users to the system. Users are added after groups are added.
users:
- default
- name: foobar
@@ -81,16 +81,18 @@ users:
# directive.
# system: Create the user as a system user. This means no home directory.
#
+
# Default user creation:
#
-# Unless you define users, you will get a 'ubuntu' user on buntu systems with the
+# Unless you define users, you will get a 'ubuntu' user on ubuntu systems with the
# legacy permission (no password sudo, locked user, etc). If however, you want
-# to have the ubuntu user in addition to other users, you need to instruct
+# to have the 'ubuntu' user in addition to other users, you need to instruct
# cloud-init that you also want the default user. To do this use the following
# syntax:
# users:
# - default
# - bob
+# - ....
# foobar: ...
#
# users[0] (the first user in users) overrides the user directive.