blob: 1e59eb6db363ccf78cfa57cf1081802b9cf0ced0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << EOT
==================================================================================
you must sync your system clock time (presented both in local time and UTC) as well as the RTC (hardware clock).
Consult https://wiki.archlinux.org/index.php/System_time & https://wiki.archlinux.org/index.php/OpenNTPD
==================================================================================
EOT
}
post_upgrade() {
post_install
}
|