I am running below command to connect puppet master
puppet agent --certname testcertname --no-daemonize --onetime --server
server_host_name --verbose
it outputs error like:
Error: Execution of '/usr/bin/yum -d 0 -e 0 -y install dnsmasq' returned 1:
Error: Cannot find a valid baseurl for repo:
I have my puppet defined as (pseudo code)
class A {
exec { somethingA:
}
}
class B {
exec { somethinB:
}
}
Class['A'] -> Class['B']
the exec{ somethingA: } is actually failed on my setup, I was expecting the
whole puppet transaction would fail. To my surprise, class B s