Documentation ¶
Index ¶
- Constants
- func Available() error
- func EscapeUnitNamePath(in string) string
- func IsTimeout(err error) bool
- func MockJournalctl(f func(svcs []string, n int, follow bool) (io.ReadCloser, error)) func()
- func MockStopDelays(checkDelay, notifyDelay time.Duration) func()
- func MockSystemctl(f func(args ...string) ([]byte, error)) func()
- func MountUnitPath(baseDir string) string
- func NewJournalStreamFile(identifier string, priority syslog.Priority, levelPrefix bool) (*os.File, error)
- func SdNotify(notifyState string) error
- type Error
- type InstanceMode
- type Log
- type Systemd
- type Timeout
- type UnitStatus
Constants ¶
const ( // the default target for systemd units that we generate ServicesTarget = "multi-user.target" // the target prerequisite for systemd units we generate PrerequisiteTarget = "network.target" // the default target for systemd socket units that we generate SocketsTarget = "sockets.target" // the default target for systemd timer units that we generate TimersTarget = "timers.target" )
Variables ¶
This section is empty.
Functions ¶
func EscapeUnitNamePath ¶
EscapeUnitNamePath works like systemd-escape --path FIXME: we could use github.com/coreos/go-systemd/unit/escape.go
and EscapePath from it. But thats not in the archive and it won't work with go1.3
func MockJournalctl ¶
func MockStopDelays ¶
MockStopDelays is used from tests so that Stop can be less forgiving there.
func MockSystemctl ¶
MockSystemctl is called from the commands to actually call out to systemctl. It's exported so it can be overridden by testing.
func MountUnitPath ¶
MountUnitPath returns the path of a {,auto}mount unit
Types ¶
type Error ¶
type Error struct {
// contains filtered or unexported fields
}
Error is returned if the systemd action failed
type InstanceMode ¶
type InstanceMode int
InstanceMode determines which instance of systemd to control.
SystemMode refers to the system instance (i.e. pid 1). UserMode refers to the the instance launched to manage the user's desktop session. GlobalUserMode controls configuration respected by all user instances on the system.
As GlobalUserMode does not refer to a single instance of systemd, some operations are not supported such as starting and stopping daemons.
const ( SystemMode InstanceMode = iota UserMode GlobalUserMode )
type Log ¶
A Log is a single entry in the systemd journal
type Systemd ¶
type Systemd interface { DaemonReload() error Enable(service string) error Disable(service string) error Start(service ...string) error StartNoBlock(service ...string) error Stop(service string, timeout time.Duration) error Kill(service, signal, who string) error Restart(service string, timeout time.Duration) error Status(units ...string) ([]*UnitStatus, error) IsEnabled(service string) (bool, error) IsActive(service string) (bool, error) LogReader(services []string, n int, follow bool) (io.ReadCloser, error) AddMountUnitFile(name, revision, what, where, fstype string) (string, error) RemoveMountUnitFile(baseDir string) error Mask(service string) error Unmask(service string) error }
Systemd exposes a minimal interface to manage systemd via the systemctl command.
func New ¶
func New(rootDir string, mode InstanceMode, rep reporter) Systemd
New returns a Systemd that uses the given rootDir