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
|
# In 2.6, compile does not fail when site.pp does not exist.
#
# However, if a catalog is compiled when site.pp does not exist,
# puppetmaster does not detect when site.pp is created. This requires a restart
#
test_name "Ticket 5477, Puppet Master does not detect newly created site.pp file"
manifest_file = "/tmp/missing_site-5477-#{$$}.pp"
on master, "rm -f #{manifest_file}"
with_master_running_on(master, "--manifest #{manifest_file} --certdnsnames=\"puppet:$(hostname -s):$(hostname -f)\" --verbose --filetimeout 1") do
# Run test on Agents
step "Agent: agent --test"
on agents, puppet_agent("--test --server #{master}")
# Create a new site.pp
step "Master: create basic site.pp file"
create_remote_file master, manifest_file, "notify{ticket_5477_notify:}"
on master, "chmod 644 #{manifest_file}"
sleep 3
step "Agent: puppet agent --test"
agents.each do |host|
on(host, puppet_agent("--test --server #{master}"), :acceptable_exit_codes => [2]) do
assert_match(/ticket_5477_notify/, stdout, "#{host}: Site.pp not detected on Puppet Master")
end
end
end
|