diff --git a/lib/tasks/mrsk/prune.rake b/lib/tasks/mrsk/prune.rake index 33b208e3..2c0f3a36 100644 --- a/lib/tasks/mrsk/prune.rake +++ b/lib/tasks/mrsk/prune.rake @@ -7,12 +7,12 @@ namespace :mrsk do namespace :prune do desc "Prune unused images older than 30 days" task :images do - on(MRSK.config.hosts) { MRSK.verbosity(:debug) { execute *MRSK.prune.images } } + on(MRSK.config.hosts) { execute *MRSK.prune.images } end desc "Prune stopped containers for the service older than 3 days" task :containers do - on(MRSK.config.hosts) { MRSK.verbosity(:debug) { execute *MRSK.prune.containers } } + on(MRSK.config.hosts) { execute *MRSK.prune.containers } end end end