puppet deep dive

1) How do you execute a master/node puppet run? puppet agent --test, puppet agent -t 2) What is wrong with this manifest? # create_file.pp file { '/temp/some_file.txt': mode => '0600' owner => 'root', group = 'root', } "ensure => file," should be the first attribute., The mode attribute should end with a comma., The group … Continue reading puppet deep dive