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