Browse Source

install_easy: improve systemd detection

pull/81/head
bol-van 3 years ago
parent
commit
65165e536c
  1. 2
      install_easy.sh
  2. 2
      uninstall_easy.sh

2
install_easy.sh

@ -158,7 +158,7 @@ check_system()
local UNAME=$(uname)
if [ "$UNAME" = "Linux" ]; then
# some distros include systemctl without systemd
if [ -d "$SYSTEMD_DIR" ] && [ -x "$SYSTEMD_DIR/systemd" ] && [ -x "$SYSTEMCTL" ]; then
if [ -d "$SYSTEMD_DIR" ] && [ -x "$SYSTEMCTL" ] && [ "$(basename $(readlink /proc/1/exe))" = "systemd" ]; then
SYSTEM=systemd
elif [ -f "/etc/openwrt_release" ] && exists opkg && exists uci ; then
SYSTEM=openwrt

2
uninstall_easy.sh

@ -54,7 +54,7 @@ check_system()
local UNAME=$(uname)
if [ "$UNAME" = "Linux" ]; then
# some distros include systemctl without systemd
if [ -d "$SYSTEMD_DIR" ] && [ -x "$SYSTEMD_DIR/systemd" ] && [ -x "$SYSTEMCTL" ]; then
if [ -d "$SYSTEMD_DIR" ] && [ -x "$SYSTEMCTL" ] && [ "$(basename $(readlink /proc/1/exe))" = "systemd" ]; then
SYSTEM=systemd
elif [ -f "/etc/openwrt_release" ] && exists opkg && exists uci ; then
SYSTEM=openwrt

Loading…
Cancel
Save