Usually, to synchronize a file with remote hosts, using puppet, one would use the following pattern: file { “/etc/init.d/pvfs2-server”: owner => root, group => root, mode => 755, source => “puppet:///files/pvfs2-server” } (using “source” to copy data as-is, and using “template(“filename”) to use a template structure as data). Or, if one wishes to directly set […]