Compare commits
3 commits
f595076479
...
95a43f2c8b
Author | SHA1 | Date | |
---|---|---|---|
95a43f2c8b | |||
76d0f675b8 | |||
11c685fbaf |
4 changed files with 45 additions and 1 deletions
42
modules/ntpsec.lua
Normal file
42
modules/ntpsec.lua
Normal file
|
@ -0,0 +1,42 @@
|
|||
add_packages({ "ntpsec" })
|
||||
|
||||
-- In the ntpsec-doc package, open in browser:
|
||||
-- file:///usr/share/doc/ntpsec/quick.html
|
||||
-- file:///usr/share/doc/ntpsec/NTS-QuickStart.html
|
||||
|
||||
add_file("/etc/ntp.conf", [[
|
||||
driftfile /var/lib/ntp/ntp.drift
|
||||
|
||||
restrict default kod limited nomodify nopeer noquery
|
||||
restrict 127.0.0.1
|
||||
restrict ::1
|
||||
|
||||
# https://gist.github.com/jauderho/2ad0d441760fc5ed69d8d4e2d6b35f8d
|
||||
|
||||
server time.cloudflare.com nts iburst
|
||||
server nts.ntp.se nts iburst
|
||||
|
||||
# https://nts.time.nl/
|
||||
server ntppool1.time.nl nts iburst
|
||||
server ntppool2.time.nl nts iburst
|
||||
|
||||
# https://system76.com/time/
|
||||
server paris.time.system76.com nts iburst
|
||||
server brazil.time.system76.com nts iburst
|
||||
|
||||
# https://www.netnod.se/netnod-time/how-to-use-nts
|
||||
server sth1.nts.netnod.se nts iburst
|
||||
server sth2.nts.netnod.se nts iburst
|
||||
|
||||
# https://ntp.br/guia/linux/
|
||||
server a.st1.ntp.br nts iburst
|
||||
server b.st1.ntp.br nts iburst
|
||||
server c.st1.ntp.br nts iburst
|
||||
server d.st1.ntp.br nts iburst
|
||||
server gps.ntp.br nts iburst
|
||||
|
||||
]])
|
||||
|
||||
modules.runit.add_service("ntpsec", [[#!/bin/sh
|
||||
exec ntpd --nice --nofork --panicgate
|
||||
]])
|
|
@ -26,6 +26,7 @@ exec logger -p daemon.info -t {{name}}]], params))
|
|||
)
|
||||
end
|
||||
add_executable(run_script_path, script)
|
||||
-- Activar servicio
|
||||
add_symlink("/etc/runit/runsvdir/default/"..name, "/etc/sv/"..name)
|
||||
add_symlink(
|
||||
t("/etc/sv/{{name}}/supervise", params),
|
||||
|
|
2
qemu.sh
2
qemu.sh
|
@ -6,7 +6,7 @@ if test "$NOGRAPHIC" = true; then
|
|||
fi
|
||||
|
||||
fallocate --length 1G tmp.ext4
|
||||
mkfs.ext4 tmp.ext4
|
||||
mkfs.ext4 -F tmp.ext4
|
||||
|
||||
sudo chown root:$(id -u) -R boot/ && sudo chmod g+rw -R boot/
|
||||
qemu-system-x86_64 -enable-kvm -m 2048 \
|
||||
|
|
|
@ -47,6 +47,7 @@ module "runit"
|
|||
module "socklog"
|
||||
module "hostname"
|
||||
module "dhcpcd"
|
||||
module "ntpsec"
|
||||
module "nginx"
|
||||
|
||||
print("=> Installing and upgrading packages...")
|
||||
|
|
Loading…
Reference in a new issue