summaryrefslogtreecommitdiff
path: root/libpiny/lib
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@omgwallhack.org>2011-05-11 22:15:57 -0700
committerJoe Rayhawk <jrayhawk@omgwallhack.org>2011-05-11 22:15:57 -0700
commita6674104d95c50d6bd697c22087181289c64883b (patch)
treec2136d567357ec16c35e75802d2b547e96f49aa5 /libpiny/lib
parent0c7e2843ae4ae231b10e0ebda5d06fcc431521be (diff)
downloadpiny-code-a6674104d95c50d6bd697c22087181289c64883b.tar.gz
piny-code-a6674104d95c50d6bd697c22087181289c64883b.zip
Make destroy_ikiwiki quieter
Diffstat (limited to 'libpiny/lib')
-rw-r--r--libpiny/lib/Piny/Repo.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpiny/lib/Piny/Repo.pm b/libpiny/lib/Piny/Repo.pm
index f4dca6e..1f50957 100644
--- a/libpiny/lib/Piny/Repo.pm
+++ b/libpiny/lib/Piny/Repo.pm
@@ -355,8 +355,8 @@ sub destroy_ikiwiki {
my $ikiuser = Piny::User::IkiWiki->new( "name" => "iki-" . $s->name );
- getpwnam( "iki-" . $s->shortname ) and system( "deluser", "--remove-home", "iki-" . $s->shortname );
- getgrnam( "iki-" . $s->shortname ) and system( "delgroup", "iki-" . $s->shortname );
+ getpwnam( "iki-" . $s->shortname ) and system( "deluser", "--quiet", "--remove-home", "iki-" . $s->shortname );
+ getgrnam( "iki-" . $s->shortname ) and system( "delgroup", "--quiet", "iki-" . $s->shortname );
};