• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

ntp mit NetworkManager

@Rettich:

hier lies mal:
Code:
# Main case switch
case "$0" in
	*if-up.d*)
	if rcntp status 2>&1; then
		log_msg=$( rcntp readd 2>&1 )
		log_dbg "${log_msg}"
	else
#		if chkconfig -c ntp 2>&1; then
			log_msg=$( rcntp ntptimeset 2>&1 )
    			log_dbg "${log_msg}"
#		fi
	fi
	;;
	*if-down.d*)
		# nothing to do for the NTP daemon if we go offline
	;;
	*)
		log_err "Don't know what to do.  This script used to be called from dir if-{up,down}.d/."
	;;
esac
 
Ah okay, also nur Zeit abgleichen und nicht ntp starten. Das was ich im Wiki auch geschrieben hab.
 
Oben