fix explorer/os for devuan ascii (#588)

remotes/origin/newtype-__letsencrypt_cert
Kamila Součková 8 years ago committed by Darko Poljak
parent a4be44b313
commit da8f6efafc
  1. 10
      cdist/conf/explorer/os

@ -51,15 +51,17 @@ if grep -q ^DISTRIB_ID=Ubuntu /etc/lsb-release 2>/dev/null; then
exit 0
fi
if [ -f /etc/debian_version ]; then
echo debian
# devuan ascii has both devuan_version and debian_version, so we need to check devuan_version first!
if [ -f /etc/devuan_version ]; then
echo devuan
exit 0
fi
if [ -f /etc/devuan_version ]; then
echo devuan
if [ -f /etc/debian_version ]; then
echo debian
exit 0
fi
###
if [ -f /etc/gentoo-release ]; then

Loading…
Cancel
Save