blob: ca73c84f4294c38df27d51c0bb749971dcc9642c [file] [log] [blame]
// Package sysinit provides config generation for a variety of platforms and
// "init" systems such as upstart, systemd etc. It is intended purely for
// bootstrapping into the Veyron system proper.
package sysinit
// InstallSystemInit defines the interface that all configs must implement.
type InstallSystemInit interface {
Print() error
Install() error
Uninstall() error
Start() error
Stop() error
}