diff options
author | Marco Amadori <marco.amadori@gmail.com> | 2011-02-10 23:31:21 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:20:42 +0100 |
commit | fda3fe6310235084202aa479f191eeada6919f13 (patch) | |
tree | 6301562f65d33dfd5538ecd17f8aba602ca84aa2 /functions | |
parent | 2159e3fba790bd0fd5da866acac3ead7b200e26e (diff) | |
download | vyos-live-build-fda3fe6310235084202aa479f191eeada6919f13.tar.gz vyos-live-build-fda3fe6310235084202aa479f191eeada6919f13.zip |
Upstart initsystem support.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 4e97816b0..86bf23bd3 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -148,7 +148,20 @@ Set_defaults () esac # Setting initsystem - LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}" + case "${LB_MODE}" in + ubuntu) + if [ "${LB_INITRAMFS}" = "live-boot" ] + then + LB_INITSYSTEM="${LB_INITSYSTEM:-upstart}" + else + LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}" + fi + ;; + + *) + LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}" + ;; + esac # Setting fdisk if [ -z "${LB_FDISK}" ] || [ ! -x "${LB_FDISK}" ] |