obosdi-pkg/config/systemd/timedatectl/menu
2022-11-10 22:27:23 +01:00

40 lines
863 B
Bash

#!/bin/bash
. ./lib
options=()
timedatectl status | grep inactive> /dev/null
if [ "$?" = "0" ]; then
options+=("Enable" "timedatectl set-ntp true")
else
options+=("Disable" "timedatectl set-ntp false")
fi
options+=("Edit" "/etc/systemd/timesyncd.conf")
defaultitem="timedatectl"
sel=$(dialog --backtitle "$apptitle" --title "Systemd timedatectl Menu :" --default-item "$defaultitem" --cancel-button "Back" --menu "" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
case $sel in
'Enable')
clear
echo "timedatectl set-ntp true"
timedatectl set-ntp true
pressanykey
;;
'Disable')
clear
echo "timedatectl set-ntp false"
timedatectl set-ntp false
pressanykey
;;
'Edit')
clear
editfile /etc/systemd/timesyncd.conf
esac
exit 0