diff options
author | Daniel Baumann <daniel@debian.org> | 2008-08-12 22:25:32 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:39 +0100 |
commit | 7230a7db139a2fac0f42fb0ac823f5b2f0e4fefe (patch) | |
tree | 8b94947a9159bbc4fddfec983b46d0147c9729ea /debian/cron.daily | |
parent | f34c8d45f5ff344eba7be255fc824965e2a4c6c7 (diff) | |
download | vyos-live-build-7230a7db139a2fac0f42fb0ac823f5b2f0e4fefe.tar.gz vyos-live-build-7230a7db139a2fac0f42fb0ac823f5b2f0e4fefe.zip |
Moving live-helper defaults file for cron autobuilder from /etc/default/live-helper to /etc/default/live-helper_autobuild in order to not conflict with the system-wide default file for helper configuration.
Diffstat (limited to 'debian/cron.daily')
-rw-r--r-- | debian/cron.daily | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/cron.daily b/debian/cron.daily index c26168a31..ddee567a2 100644 --- a/debian/cron.daily +++ b/debian/cron.daily @@ -11,11 +11,11 @@ then fi # Checking for live-helper defaults -if [ -r /etc/default/live-helper ] +if [ -r /etc/default/live-helper_autobuild ] then - . /etc/default/live-helper + . /etc/default/live-helper_autobuild else - echo "E: /etc/default/live-helper missing." + echo "E: /etc/default/live-helper_autobuild missing." exit 1 fi |