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
|
test_name "verify that we can modify the gid"
user = "pl#{rand(99999).to_i}"
group1 = "#{user}old"
group2 = "#{user}new"
agents.each do |host|
step "ensure that the groups both exist"
on(host, puppet_resource('group', group1, 'ensure=present'))
on(host, puppet_resource('group', group2, 'ensure=present'))
step "ensure the user exists and has the old group"
on(host, puppet_resource('user', user, 'ensure=present', "gid=#{group1}"))
step "verify that the user has the correct gid"
on(host, "getent group #{group1}") do
gid = stdout.split(':')[2]
on(host, "getent passwd #{user}") do
got = stdout.split(':')[3]
fail_test "didn't have the expected old GID, but #{got}" unless got == gid
end
end
step "modify the GID of the user"
on(host, puppet_resource('user', user, 'ensure=present', "gid=#{group2}"))
step "verify that the user has the updated gid"
on(host, "getent group #{group2}") do
gid = stdout.split(':')[2]
on(host, "getent passwd #{user}") do
got = stdout.split(':')[3]
fail_test "didn't have the expected old GID, but #{got}" unless got == gid
end
end
step "ensure that we remove the things we made"
on(host, puppet_resource('user', user, 'ensure=absent'))
on(host, puppet_resource('group', group1, 'ensure=absent'))
on(host, puppet_resource('group', group2, 'ensure=absent'))
end
|