tuto:gestion_de_parc:wpkg:ntp

Configurer le client NTP

ntp.xml
<packages>
    <package
        id="ntp"
        name="NTP time synchronization"
        revision="1"
        priority="10"
        reboot="false"
        execute="once">
 
        <variable name="NTP_SERVER" value="%SERVER%" />
 
        <install cmd='%COMSPEC% /c sc config w32time start= auto' />
        <install cmd='%COMSPEC% /c net time /setsntp:%NTP_SERVER%' />
        <install cmd='%COMSPEC% /c net time \\%NTP_SERVER% /set /yes' />
        <install cmd='%COMSPEC% /c net stop w32time &amp; net start w32time' />
        <install cmd='%COMSPEC% /c w32tm /resync /nowait' />
 
        <remove cmd='%COMSPEC% /c net time /setsntp:time.windows.com' />
        <remove cmd='%COMSPEC% /c net stop w32time &amp; net start w32time' />
        <remove cmd='%COMSPEC% /c w32tm /resync /nowait' />
    </package>
</packages>
il faut avoir défini une variable SERVER pointant vers votre serveur de temps, cette définition peut se faire par exemple dans le fichier profiles.xml
  • tuto/gestion_de_parc/wpkg/ntp.txt
  • Dernière modification: 13/07/2012 10:12
  • de dani