diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 11:08:53 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 11:08:53 -0200 |
commit | 223bf3cd3508f290d0dcf40133751fd12d38ad6d (patch) | |
tree | ff7c8e1e7e34e0f2f7d2d901c4301dfcd5c307ef | |
parent | d0fbf5ba42e196f40e65e7f1afa80b4115c31f31 (diff) | |
download | puppet-reprepro-223bf3cd3508f290d0dcf40133751fd12d38ad6d.tar.gz puppet-reprepro-223bf3cd3508f290d0dcf40133751fd12d38ad6d.tar.bz2 |
Cleanup
-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, } } - |