summaryrefslogtreecommitdiff
path: root/doRdate.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-03 06:49:33 -0500
committerJeff Carr <[email protected]>2025-10-03 06:49:33 -0500
commit4574971b222384f3f0f1a5f41ce03ac7e495d682 (patch)
treeb1aba2cd3bb699cc170c252a0531459a981847a0 /doRdate.go
parent322ec42ce6da80915a80ed36f02bc6a15c238fb2 (diff)
more argv options
Diffstat (limited to 'doRdate.go')
-rw-r--r--doRdate.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doRdate.go b/doRdate.go
index ac66119..a33b022 100644
--- a/doRdate.go
+++ b/doRdate.go
@@ -9,11 +9,11 @@ func doRdate() {
checkSuperuser()
if _, err := fhelp.CheckCmd("rdate"); err != nil {
- exitOnError([]string{"apt", "install", "rdate"})
+ aptInstall("rdate")
}
if _, err := fhelp.CheckCmd("hwclock"); err != nil {
- exitOnError([]string{"apt", "install", "util-linux-extra"})
+ aptInstall("util-linux-extra")
}
exitOnError([]string{"rdate", "rdate.grid.wit.com"})