mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
8 lines
108 B
Bash
8 lines
108 B
Bash
#!/bin/bash
|
|
curl -s http://google.com > /dev/null
|
|
if [ $? -eq 0 ]
|
|
then
|
|
ntpdate -s 1.se.pool.ntp.org
|
|
fi
|
|
exit
|