Procházet zdrojové kódy

Update install.sh

Suppress rc-service status message
pull/94/head
MegaV0lt před 5 roky
committed by GitHub
rodič
revize
9c42a06d25
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 8 přidání a 7 odebrání
  1. +8
    -7
      install.sh

+ 8
- 7
install.sh Zobrazit soubor

@@ -1,9 +1,9 @@
#!/usr/bin/env sh

[ "$(id -u)" -eq 0 ] || { echo "You need to be ROOT (sudo can be used)"; exit 1; }
[ "$(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 and running log2ram service..."
echo 'Try to detect init and running log2ram service...'
if [ "$(systemctl --version 2> /dev/null)" != '' ] ; then
INIT='systemd'
elif [ "$(rc-service --version 2> /dev/null)" != '' ] ; then
@@ -12,13 +12,14 @@ fi

case "$INIT" in
systemd)
systemctl -q is-active log2ram && { echo "ERROR: log2ram service is still running. Please run \"sudo service log2ram stop\" to stop it."; exit 1; } ;;
systemctl -q is-active log2ram && { echo 'ERROR: log2ram service is still running. Please run "sudo service log2ram stop" to stop it.' ; exit 1 ; } ;;
openrc)
rc-service log2ram status && { echo "ERROR: log2ram service is still running. Please run \"sudo rc-service log2ram stop\" to stop it."; exit 1; } ;;
rc-service log2ram status 2>1 >/dev/null && { echo 'ERROR: log2ram service is still running. Please run "sudo rc-service log2ram stop" to stop it.' ; exit 1 ; } ;;
*) echo 'ERROR: could not detect init-system' ; exit 1
;;
esac

echo "installing files for ${INIT}..."
# log2ram
mkdir -p /usr/local/bin/
install -m 755 log2ram /usr/local/bin/log2ram
@@ -46,5 +47,5 @@ rm -rf /var/log.hdd
# Make sure we start clean
rm -rf /var/hdd.log

echo "##### Reboot to activate log2ram #####"
echo "##### edit /etc/log2ram.conf to configure options ####"
echo '##### Reboot to activate log2ram! #####'
echo '##### Edit /etc/log2ram.conf to configure options #####'

Načítá se…
Zrušit
Uložit