mirror of
https://github.com/azlux/log2ram.git
synced 2023-10-10 13:37:24 +02:00
Use env instead of /bin/sh
better for flexible shell
This commit is contained in:
parent
e439c5ffdd
commit
16ebd29848
@ -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 ] && echo "ERROR: log2ram still installed. Uninstall first!"
|
||||||
[ -d /var/hdd.log ] && exit 1
|
[ -d /var/hdd.log ] && exit 1
|
||||||
|
|
||||||
if [ $(id -u) -eq 0 ]
|
if [ "$(id -u)" -eq 0 ]
|
||||||
then
|
then
|
||||||
cp log2ram.service /etc/systemd/system/log2ram.service
|
cp log2ram.service /etc/systemd/system/log2ram.service
|
||||||
chmod 644 /etc/systemd/system/log2ram.service
|
chmod 644 /etc/systemd/system/log2ram.service
|
||||||
|
2
log2ram
2
log2ram
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
. /etc/log2ram.conf
|
. /etc/log2ram.conf
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
systemctl reload log2ram
|
systemctl reload log2ram
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
if [ $(id -u) -eq 0 ]
|
if [ "$(id -u)" -eq 0 ]
|
||||||
then
|
then
|
||||||
service log2ram stop
|
service log2ram stop
|
||||||
systemctl disable log2ram
|
systemctl disable log2ram
|
||||||
|
Loading…
Reference in New Issue
Block a user