From: James Troup Date: Sun, 14 Jul 2002 15:03:06 +0000 (+0000) Subject: use natalie's new -a/--add feature X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=3742f57819d11874f2536a95dbf379c486bf435e;p=dak.git use natalie's new -a/--add feature --- diff --git a/cron.daily-security b/cron.daily-security index fdbb1941..1b55b7a0 100644 --- a/cron.daily-security +++ b/cron.daily-security @@ -45,6 +45,16 @@ for suite in $suites; do esac if [ ! "$type" = "skip" ]; then $masterdir/natalie -q -S -t $override_type -s $suite -c updates/$component < override.$override_suite.$component$type + case $suite in + stable) + $masterdir/natalie -q -a -t $override_type -s $suite -c updates/$component < override.woody.$component$type + $masterdir/natalie -q -a -t $override_type -s $suite -c updates/$component < override.sid.$component$type + ;; + testing) + $masterdir/natalie -q -a -t $override_type -s $suite -c updates/$component < override.sid.$component$type + ;; + *) echo "Unknown suite type"; exit 1;; + esac fi done done