diff --git a/Base/needed.xml b/Base/needed.xml index 8342a79..0ba9fb1 100644 --- a/Base/needed.xml +++ b/Base/needed.xml @@ -14,6 +14,7 @@ + diff --git a/Python/etc/cron.daily/git_dirty_repo b/Python/etc/cron.daily/git_dirty_repo index 7e93a5b..197a2e3 100644 --- a/Python/etc/cron.daily/git_dirty_repo +++ b/Python/etc/cron.daily/git_dirty_repo @@ -18,7 +18,6 @@ if has("crans-nfs"): print '%s --untracked-weekly --repository=/usr/scripts/wifi_new --from="%s" --to="%s"' % (notifier_path, default_from, default_to) print '%s --untracked-weekly --repository=/usr/scripts/src/mac_ip --from="%s" --to="%s"' % (notifier_path, default_from, default_to) print '%s --untracked-weekly --repository=/home/respbats/www/config --from="%s" --to="%s"' % (notifier_path, default_from, default_to) - print '%s --untracked-weekly --repository=/home/ca --from="%s" --to="%s"' % (notifier_path, default_from, "bureau@lists.crans.org") if has("bcfg2"): print '%s --untracked-weekly --repository=/var/lib/bcfg2 --from="%s" --to="%s"' % (notifier_path, default_from, default_to) diff --git a/Python/etc/cron.weekly/git_dirty_repo b/Python/etc/cron.weekly/git_dirty_repo new file mode 100644 index 0000000..47306df --- /dev/null +++ b/Python/etc/cron.weekly/git_dirty_repo @@ -0,0 +1,15 @@ +# -*- encoding: utf-8 -*- + +info["owner"] = "root" +info["group"] = "root" +info["perms"] = 0755 + +@#!/bin/bash +header() + +notifier_path = "/usr/scripts/utils/git-whatsnew" +default_from = "roots@crans.org" +default_to = "roots@crans.org" + +if has("crans-nfs"): + print '%s --repository=/home/ca --from="%s" --to="%s"' % (notifier_path, default_from, "bureau@lists.crans.org")