diff options
author | Daniel Baumann <daniel@debian.org> | 2008-04-21 10:38:33 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-04-21 10:38:33 +0200 |
commit | bd9fb96189ba440eec31c1d6d143e3ea05ca0789 (patch) | |
tree | 5b0f540195dffd2fd9339e28f9486e5e0039e784 /examples | |
parent | 0c694993b75fcebb3dc1e3bb549eca0549f0d912 (diff) | |
download | vyos-live-build-bd9fb96189ba440eec31c1d6d143e3ea05ca0789.tar.gz vyos-live-build-bd9fb96189ba440eec31c1d6d143e3ea05ca0789.zip |
Adding live-magic to snapshots.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/cron/snapshots.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/cron/snapshots.sh b/examples/cron/snapshots.sh index bfd25b303..ad9bb7f1d 100755 --- a/examples/cron/snapshots.sh +++ b/examples/cron/snapshots.sh @@ -1,11 +1,11 @@ -#!/bin/sh +#!/bin/sh -e # Static variables if [ -n "${1}" ] then PACKAGES="${@}" else - PACKAGES="live-helper live-initramfs live-initscripts live-webhelper debian-unofficial-archive-keyring" + PACKAGES="live-helper live-initramfs live-initscripts live-webhelper live-magic debian-unofficial-archive-keyring" fi DEBEMAIL="debian-live-devel@lists.alioth.debian.org" @@ -63,6 +63,10 @@ do git clone git://git.debian.net/git/${PACKAGE}.git ;; + live-magic) + git clone git://git.chris-lamb.co.uk/live-magic.git + ;; + *) git clone git://git.debian.org/git/users/daniel/${PACKAGE}.git ;; |