mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
20 lines
461 B
Bash
Executable File
20 lines
461 B
Bash
Executable File
#!/bin/bash
|
|
|
|
timedate1() {
|
|
gdbus call \
|
|
--system \
|
|
--object-path /org/freedesktop/timedate1 \
|
|
--dest org.freedesktop.timedate1 \
|
|
--method org.freedesktop.timedate1.SetNTP "$@"
|
|
}
|
|
|
|
if [ -e /sys/fs/cgroup/systemd ]; then
|
|
case "$2" in
|
|
up)
|
|
timedate1 true false
|
|
;;
|
|
down)
|
|
timedate1 false false
|
|
;;
|
|
esac
|
|
fi |