package unit
import "k8s.io/kubernetes/Godeps/_workspace/src/github.com/coreos/go-systemd/unit"
Index ¶
- Constants
- Variables
- func AllMatch(u1 []*UnitOption, u2 []*UnitOption) bool
- func Serialize(opts []*UnitOption) io.Reader
- func UnitNameEscape(unescaped string) string
- func UnitNamePathEscape(unescaped string) string
- func UnitNamePathUnescape(escaped string) string
- func UnitNameUnescape(escaped string) string
- type UnitOption
Constants ¶
const ( // SYSTEMD_LINE_MAX mimics the maximum line length that systemd can use. // On typical systemd platforms (i.e. modern Linux), this will most // commonly be 2048, so let's use that as a sanity check. // Technically, we should probably pull this at runtime: // SYSTEMD_LINE_MAX = int(C.sysconf(C.__SC_LINE_MAX)) // but this would introduce an (unfortunate) dependency on cgo SYSTEMD_LINE_MAX = 2048 // characters that systemd considers indicate a newline SYSTEMD_NEWLINE = "\r\n" )
Variables ¶
Functions ¶
func AllMatch ¶
func AllMatch(u1 []*UnitOption, u2 []*UnitOption) bool
func Serialize ¶
func Serialize(opts []*UnitOption) io.Reader
Serialize encodes all of the given UnitOption objects into a unit file. When serialized the options are sorted in their supplied order but grouped by section.
func UnitNameEscape ¶
UnitNameEscape escapes a string as `systemd-escape` would
func UnitNamePathEscape ¶
UnitNamePathEscape escapes a string as `systemd-escape --path` would
func UnitNamePathUnescape ¶
UnitNamePathUnescape unescapes a string as `systemd-escape --path --unescape` would
func UnitNameUnescape ¶
UnitNameUnescape unescapes a string as `systemd-escape --unescape` would
Types ¶
type UnitOption ¶
func Deserialize ¶
func Deserialize(f io.Reader) (opts []*UnitOption, err error)
Deserialize parses a systemd unit file into a list of UnitOption objects.
func NewUnitOption ¶
func NewUnitOption(section, name, value string) *UnitOption
func (*UnitOption) Match ¶
func (uo *UnitOption) Match(other *UnitOption) bool
func (*UnitOption) String ¶
func (uo *UnitOption) String() string
Source Files ¶
deserialize.go escape.go option.go serialize.go
- Version
- v1.2.0-alpha.6
- Published
- Jan 13, 2016
- Platform
- linux/amd64
- Imports
- 8 packages
- Last checked
- 15 seconds ago –
Tools for package owners.