diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 06:49:33 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 06:49:33 -0500 |
| commit | 4574971b222384f3f0f1a5f41ce03ac7e495d682 (patch) | |
| tree | b1aba2cd3bb699cc170c252a0531459a981847a0 /doRdate.go | |
| parent | 322ec42ce6da80915a80ed36f02bc6a15c238fb2 (diff) | |
more argv options
Diffstat (limited to 'doRdate.go')
| -rw-r--r-- | doRdate.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"}) |
