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.
This commit is contained in:
parent
f34c8d45f5
commit
7230a7db13
|
@ -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
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Defaults for /etc/cron.daily/live-helper
|
||||
# Defaults for /etc/cron.daily/live-helper_autobuild
|
||||
|
||||
AUTOBUILD="disabled"
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ install: build
|
|||
# Installing message catalogs
|
||||
$(MAKE) -C po install DESTDIR=$(CURDIR)/debian/live-helper
|
||||
|
||||
install -D -m 0644 debian/default debian/live-helper/etc/default/live-helper
|
||||
install -D -m 0644 debian/default debian/live-helper/etc/default/live-helper_autobuild
|
||||
|
||||
# Preparing alternatives
|
||||
mv debian/live-helper/usr/share/live-helper/includes debian/live-helper/usr/share/live-helper/includes.debian
|
||||
|
|
Loading…
Reference in New Issue