diff options
Diffstat (limited to 'manifests/disabled.pp')
-rw-r--r-- | manifests/disabled.pp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/manifests/disabled.pp b/manifests/disabled.pp index 1d41261..9c822fc 100644 --- a/manifests/disabled.pp +++ b/manifests/disabled.pp @@ -1,3 +1,9 @@ class reprepro::disabled( $basedir = '/srv/reprepro' -) { } +) { + cron { reprepro: + command => "/usr/bin/reprepro --silent -b ${reprepro::basedir} processincoming incoming", + user => reprepro, + ensure => absent, + } +} |