mirror of
https://github.com/hamonikr/systemback.git
synced 2025-12-23 22:17:46 -05:00
8 lines
242 B
Bash
8 lines
242 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = install ] && grep ^enabled=true /etc/systemback/systemback.conf >/dev/null 2>&1
|
|
then
|
|
echo "Disabling Systemback scheduler ..."
|
|
sed -i s/^enabled=true/enabled=false/g /etc/systemback/systemback.conf
|
|
fi
|
|
#DEBHELPER# |