package guestnet import _ "embed" const ( GuestScriptPath = "/usr/local/libexec/banger-network-bootstrap" SystemdServiceName = "banger-network.service" VoidCoreServicePath = "/etc/runit/core-services/20-banger-network.sh" ) var ( //go:embed assets/bootstrap.sh bootstrapScript string //go:embed assets/systemd.service systemdService string //go:embed assets/void-core-service.sh voidCoreService string ) func BootstrapScript() string { return bootstrapScript } func SystemdServiceUnit() string { return systemdService } func VoidCoreService() string { return voidCoreService }