diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-09-21 20:52:34 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-09-21 20:52:34 +0000 |
commit | 52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b (patch) | |
tree | f54d6b8901f8679fbcd415fedc3a785e9356d46d | |
parent | 35aab110043174a6e79bc6550db1bbf4a1a05363 (diff) | |
download | puppet-52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b.tar puppet-52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b.tar.gz puppet-52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b.tar.bz2 puppet-52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b.tar.xz puppet-52cc76e5b6fbdafb320abc3cb6ee9a4e8b87cc3b.zip |
remove useless use of cat noticed by tmb
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp index f7c0a287..40094548 100644 --- a/modules/buildsystem/manifests/init.pp +++ b/modules/buildsystem/manifests/init.pp @@ -209,7 +209,7 @@ class buildsystem { cron { "update maintdb export": user => $maintdb_login, - command => "$maintdb_binpath root get > $maintdb_dump; cat $maintdb_dump | grep ' nobody\$' > $maintdb_unmaintained", + command => "$maintdb_binpath root get > $maintdb_dump; grep ' nobody\$' $maintdb_dump > $maintdb_unmaintained", minute => "*/30", require => User[$maintdb_login], } |