Start of change

REMOVE_TIME_SERVER procedure

The REMOVE_TIME_SERVER procedure removes a Network Time Protocol (NTP) server from the NTP configuration list.

The REMOVE_TIME_SERVER procedure requires 5770SS1 Option 33 - Portable Application Solutions Environment (PASE).

Authorization: The caller must have:
  • *IOSYSCFG special authority, and
  • *RW authority to /QIBM/UserData/OS400/TCPIP/NTP/ntp.conf
Read syntax diagramSkip visual syntax diagram REMOVE_TIME_SERVER ( TIME_SERVER =>  time-server )

The schema is QSYS2.

time-server
A character or graphic string that identifies the DNS name of the NTP server to be removed from the configuration.

Example

  • Remove time.domain.name.com as a preferred time server
    CALL QSYS2.REMOVE_TIME_SERVER(TIME_SERVER =>'time.domain.name.com');
End of change