allow building non-gentoo images on gentoo hosts

Can't use a variable that's not set.

Change-Id: I4a7cf2ac47c2254da2fec778437f67c1fe3707f7
This commit is contained in:
Matthew Thode 2018-04-12 13:24:59 -05:00
parent 0769bfd4aa
commit 2dd6dd357a
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8
1 changed files with 4 additions and 2 deletions

View File

@ -14,8 +14,10 @@ if [ -f /usr/bin/systemctl -o -f /bin/systemctl ]; then
elif [[ -f /sbin/initctl ]]; then
echo "upstart"
elif [[ -f /etc/gentoo-release ]]; then
if [[ "${GENTOO_PROFILE}" =~ systemd ]]; then
echo "systemd"
if [[ -z GENTOO_PROFILE ]]; then
if [[ "${GENTOO_PROFILE}" =~ systemd ]]; then
echo "systemd"
fi
else
echo "openrc"
fi