8 lines
122 B
Plaintext
8 lines
122 B
Plaintext
![]() |
#! /usr/bin/env sh
|
||
|
|
||
|
INIT=$(file /sbin/init 2>&1 | grep systemd)
|
||
|
if [ ! -z "$INIT" ]; then
|
||
|
systemctl daemon-reload
|
||
|
fi
|
||
|
|