8 lines
226 B
Plaintext
8 lines
226 B
Plaintext
|
#!/bin/sh
|
||
|
# PLS do NOT delete timesyncing from VM virtuals
|
||
|
# it is necessary for critical cluster services
|
||
|
# nada
|
||
|
|
||
|
test -x /usr/sbin/ntpdate || exit 0
|
||
|
/usr/sbin/ntpdate time1.verdnatura.es
|
||
|
/usr/sbin/ntpdate time2.verdnatura.es
|