In one of the JourneyMonitor puppet manifests, we have a defined type that allows us to dynamically create cronjob files on target machines: define createCronjobFile { file { "/etc/cron.d/journeymonitor-${name}": owner => "root", group => "root", mode => "0644", content => template("cronjobs/etc/cron.d/journeymonitor-${name}.erb"), } } Let’s assume that we have a system where we want to end up having cronjobs /etc/cron.d/journeymonitor-foo and /etc/cron.d/journeymonitor-bar. This is achieve...