# HG changeset patch # User IBBoard # Date 1693681186 -3600 # Node ID d7ad78f128b1cebc480bef927170e608d52b6288 # Parent dde1d7e2309b731e8f1e84dafcc003de9079c53c Disable Puppet service It uses a server, not local files, so it has been failing to find the domain "puppet" since we installed it. CentOS didn't seem to auto-run the service diff -r dde1d7e2309b -r d7ad78f128b1 manifests/templates.pp --- a/manifests/templates.pp Sat Sep 02 19:58:24 2023 +0100 +++ b/manifests/templates.pp Sat Sep 02 19:59:46 2023 +0100 @@ -31,7 +31,10 @@ version: 5 ", } - + service { 'puppet': + ensure => stopped, + enable => false, + } if $operatingsystem == 'Ubuntu' { package { 'locales': ensure => present