diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/purged.pp | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/manifests/purged.pp b/manifests/purged.pp index f5cb5d5..fde74b3 100644 --- a/manifests/purged.pp +++ b/manifests/purged.pp @@ -4,9 +4,6 @@ class reprepro::purged( $basedir = '/srv/reprepro' ) { - $reprepro_origin = $origin - $reprepro_uploaders = $uploaders - user { "reprepro": ensure => absent, } @@ -20,58 +17,6 @@ class reprepro::purged( force => true, ensure => absent; - "$basedir/conf": - force => true, - ensure => absent; - - "$basedir/db": - force => true, - ensure => absent; - - "$basedir/dists": - force => true, - ensure => absent; - - "$basedir/pool": - force => true, - ensure => absent; - - "$basedir/incoming": - force => true, - ensure => absent; - - "$basedir/logs": - force => true, - ensure => absent; - - "$basedir/tmp": - force => true, - ensure => absent; - - "$basedir/conf/distributions": - force => true, - ensure => absent; - - "$basedir/conf/uploaders": - force => true, - ensure => absent; - - "$basedir/conf/incoming": - force => true, - ensure => absent; - - "$basedir/index.html": - force => true, - ensure => absent; - - "$basedir/.gnupg": - force => true, - ensure => absent; - - "$basedir/.gnupg/secring.gpg": - force => true, - ensure => absent; - "/usr/local/bin/reprepro-export-key": ensure => absent, content => template('reprepro/reprepro-export-key.sh.erb'), @@ -86,4 +31,3 @@ class reprepro::purged( ensure => absent, } } - |