diff options
-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 40094548..e15ebd8c 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; grep ' nobody\$' $maintdb_dump > $maintdb_unmaintained", + command => "$maintdb_binpath root get > $maintdb_dump; grep ' nobody\$' $maintdb_dump | sed 's/ nobody\$//' > $maintdb_unmaintained", minute => "*/30", require => User[$maintdb_login], } |