mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-30 23:55:23 +02:00
ntpd currently prints it output to tty which is not necessary since ntpd itself already logs to syslog if a syslog daemon is running. By redirecting output of the process to /dev/null (stdout and stderr), this is avoided.
2 lines
55 B
Bash
Executable file
2 lines
55 B
Bash
Executable file
#!/bin/sh
|
|
exec ntpd -g -u ntpd:ntpd -n >/dev/null 2>&1
|