ソースを参照

Update install.sh

Suppress "file not found" error when testing for init
pull/94/head
MegaV0lt 5年前
committed by GitHub
コミット
3740b50ec7
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      install.sh

+ 3
- 3
install.sh ファイルの表示

@@ -3,10 +3,10 @@
[ "$(id -u)" -eq 0 ] || { echo "You need to be ROOT (sudo can be used)"; exit 1; }

# See if we can find out the init-system
echo "Try to detect init..."
if [ "$(systemctl --version)" != '' ] ; then
echo "Try to detect init and running log2ram service..."
if [ "$(systemctl --version 2> /dev/null)" != '' ] ; then
INIT='systemd'
elif [ "$(rc-service --version)" != '' ] ; then
elif [ "$(rc-service --version 2> /dev/null)" != '' ] ; then
INIT='openrc'
fi



読み込み中…
キャンセル
保存