2024-07-11 01:13:41 +09:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2024-07-15 01:20:52 +09:00
|
|
|
"io"
|
2024-07-11 01:13:41 +09:00
|
|
|
"io/fs"
|
|
|
|
"os"
|
2024-07-15 01:20:52 +09:00
|
|
|
"os/exec"
|
2024-07-11 01:13:41 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
systemdCheckPath = "/run/systemd/system"
|
|
|
|
)
|
|
|
|
|
|
|
|
// https://www.freedesktop.org/software/systemd/man/sd_booted.html
|
|
|
|
func sdBooted() bool {
|
|
|
|
_, err := os.Stat(systemdCheckPath)
|
|
|
|
if err != nil {
|
|
|
|
if verbose {
|
|
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
|
|
fmt.Println("System not booted through systemd")
|
|
|
|
} else {
|
|
|
|
fmt.Println("Error accessing", systemdCheckPath+":", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2024-07-15 01:20:52 +09:00
|
|
|
|
|
|
|
func which(file string) (string, bool) {
|
|
|
|
path, err := exec.LookPath(file)
|
|
|
|
return path, err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func copyFile(dst, src string) error {
|
|
|
|
srcD, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if srcD.Close() != nil {
|
|
|
|
// unreachable
|
|
|
|
panic("src file closed prematurely")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
dstD, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if dstD.Close() != nil {
|
|
|
|
// unreachable
|
|
|
|
panic("dst file closed prematurely")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
_, err = io.Copy(dstD, srcD)
|
|
|
|
return err
|
|
|
|
}
|