22 lines
303 B
Go
22 lines
303 B
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"syscall"
|
|
)
|
|
|
|
func CreateConf() {
|
|
if syscall.Geteuid() != 0 {
|
|
os.Exit(1)
|
|
fmt.Printf("You must be root to run\n, use the sudo/doas")
|
|
}
|
|
exec.Command("mkdir /etc/banforge")
|
|
exec.Command("touch /etc/banforge/config.toml")
|
|
|
|
}
|
|
|
|
func CheckSysConf() {
|
|
}
|