diff options
author | drebs <drebs@riseup.net> | 2010-02-16 19:45:30 -0200 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2010-02-16 19:45:30 -0200 |
commit | b17a2a7261c9230b18d8b91ee7c5461f8252651d (patch) | |
tree | 0f50204c8f55f5c6d1bab88b2418005edf2440ad /templates | |
parent | 06c5be320b0ee5842584224e26e379cd8c517421 (diff) | |
download | puppet-pmwiki-b17a2a7261c9230b18d8b91ee7c5461f8252651d.tar.gz puppet-pmwiki-b17a2a7261c9230b18d8b91ee7c5461f8252651d.tar.bz2 |
Adding -o option to unzip.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/pmwiki.sh.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/pmwiki.sh.erb b/templates/pmwiki.sh.erb index 7769dcd..49accde 100644 --- a/templates/pmwiki.sh.erb +++ b/templates/pmwiki.sh.erb @@ -29,7 +29,7 @@ function pmwiki_deploy { wget http://pmwiki.org/pub/pmwiki/pmwiki-$new.tgz wget http://pmwiki.org/pub/pmwiki/i18n/i18n-all.zip tar zxvf pmwiki-$new.tgz && rm pmwiki-$new.tgz - ( cd pmwiki-$new && unzip ../i18n-all.zip && rm $_ ) + ( cd pmwiki-$new && unzip -o ../i18n-all.zip && rm $_ ) chown -R root.root pmwiki-$new/ } |