diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2024-12-12 20:03:09 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2025-02-18 17:11:38 +0000 |
| commit | 521f66715afb312b356afafc68cbc044a436a753 (patch) | |
| tree | 94b5ade2d2e80436de481f80d4beed98ad55c0ed /libexec | |
| parent | c76c2a19ae3763d17aa6a60a5831ed24cbc16e83 (diff) | |
Diffstat (limited to 'libexec')
| -rwxr-xr-x | libexec/rc/rc.d/ntpd | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libexec/rc/rc.d/ntpd b/libexec/rc/rc.d/ntpd index e7e42da8acc7..8babda09455c 100755 --- a/libexec/rc/rc.d/ntpd +++ b/libexec/rc/rc.d/ntpd @@ -101,7 +101,6 @@ ntpd_precmd() # by the admin, we don't add the option. If the file exists in the old # default location we use that, else we use the new default location. if can_run_nonroot; then - _user="ntpd" driftopt="-f ${_ntp_default_driftfile}" elif grep -q "^[ \t]*driftfile" "${ntpd_config}" || [ -n "${rc_flags}" ] && @@ -115,7 +114,13 @@ ntpd_precmd() fi # Set command_args based on the various config vars. - command_args="-p ${pidfile} -c ${ntpd_config} ${driftopt}" + command_args="-p ${pidfile} -c ${ntpd_config} ${driftopt} -u ${ntpd_user:=ntpd:ntpd}" + + # Unset ntpd_user because rc.subr uses $${name}_user to determine + # whether to invoke su(1) to setuid() to $ntpd_user for us. We want + # ntpd to do the setuid() itself through the -u argument, above. + unset ntpd_user + if checkyesno ntpd_sync_on_start; then command_args="${command_args} -g" fi |
