You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
424 B
17 lines
424 B
#!/usr/bin/env bash
|
|
#
|
|
# Software: Continent AP
|
|
#
|
|
|
|
ENABLED=yes
|
|
[[ ${ENABLED} == "yes" ]] || exit 0
|
|
DEBUGMODE=no
|
|
debug_mode "$0" "$@"
|
|
|
|
ISSYSTEMD=$(readlink -fq ${ROOTFS}/usr/bin/init | grep "lib/systemd/systemd$")
|
|
if [[ -d /etc/cts ]]; then
|
|
if [[ -n ${ISSYSTEMD} ]] && ! systemctl --quiet is-active cts.service; then
|
|
ldconfig /usr/lib/cts && systemctl --quiet restart cts.service
|
|
fi
|
|
fi
|