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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# vi: ts=4 expandtab
#
# Copyright (C) 2012 Canonical Ltd.
#
# Author: Ben Howard <ben.howard@canonical.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from cloudinit.settings import PER_INSTANCE
frequency = PER_INSTANCE
def handle(name, cfg, cloud, log, _args):
user_zero = None
if 'groups' in cfg:
for group in cfg['groups']:
if isinstance(group, dict):
for name, values in group.iteritems():
if isinstance(values, list):
cloud.distro.create_group(name, values)
elif isinstance(values, str):
cloud.distro.create_group(name, values.split(','))
else:
cloud.distro.create_group(group, [])
if 'users' in cfg:
user_zero = None
for user_config in cfg['users']:
# Handle the default user creation
if 'default' in user_config:
log.info("Creating default user")
# Create the default user if so defined
try:
cloud.distro.add_default_user()
if not user_zero:
user_zero = cloud.distro.get_default_user()
except NotImplementedError:
if user_zero == name:
user_zero = None
log.warn("Distro has not implemented default user "
"creation. No default user will be created")
elif isinstance(user_config, dict) and 'name' in user_config:
name = user_config['name']
if not user_zero:
user_zero = name
# Make options friendly for distro.create_user
new_opts = {}
if isinstance(user_config, dict):
for opt in user_config:
new_opts[opt.replace('-', '_')] = user_config[opt]
cloud.distro.create_user(**new_opts)
else:
# create user with no configuration
cloud.distro.create_user(user_config)
|