Use env instead of /bin/sh

better for flexible shell
This commit is contained in:
azlux 2018-02-16 01:03:18 +01:00
parent e439c5ffdd
commit 16ebd29848
4 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
#!/bin/sh
#!/usr/bin/env sh
[ -d /var/hdd.log ] && echo "ERROR: log2ram still installed. Uninstall first!"
[ -d /var/hdd.log ] && exit 1
if [ $(id -u) -eq 0 ]
if [ "$(id -u)" -eq 0 ]
then
cp log2ram.service /etc/systemd/system/log2ram.service
chmod 644 /etc/systemd/system/log2ram.service

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. /etc/log2ram.conf

View File

@ -1,3 +1,3 @@
#!/bin/sh
#!/usr/bin/env sh
systemctl reload log2ram

View File

@ -1,6 +1,6 @@
#!/bin/sh
#!/usr/bin/env sh
if [ $(id -u) -eq 0 ]
if [ "$(id -u)" -eq 0 ]
then
service log2ram stop
systemctl disable log2ram