mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
28 lines
609 B
Bash
28 lines
609 B
Bash
#!/bin/bash
|
|
|
|
# mod for rhel8 / alma
|
|
# Quite useful if time/date in your Resumed VM is stuck in the past
|
|
# REF: https://access.redhat.com/solutions/4130881
|
|
|
|
date
|
|
# if exist, use it; should work with .deb-based distros
|
|
[ $(type -path ntpdate |wc -l) -gt 0 ] && ntpdate -s pool.ntp.org
|
|
|
|
# RHEL8 / alma
|
|
|
|
if [ $(systemctl -a |grep chronyd |head -n 1 |wc -l) -gt 0 ]; then
|
|
systemctl stop chronyd
|
|
chronyd -q
|
|
systemctl start chronyd
|
|
fi
|
|
|
|
date
|
|
|
|
#ntp1.linuxmedialabs.com
|
|
# pool.ntp.org
|
|
# ntp1.tummy.com - CO
|
|
# louie.udel.edu - DElwr
|
|
# ntp.shorty.com - GA
|
|
|
|
# inetd's timeserver is port 37; use ' rdate servername '
|