File: doc.go

package info (click to toggle)
golang-github-coreos-go-systemd 22.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 676 kB
  • sloc: sh: 115; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
// Package unit provides utilities for parsing, serializing, and manipulating
// systemd unit files. It supports both reading unit file content into Go data
// structures and writing Go data structures back to unit file format.
//
// The package provides functionality to:
//   - Parse systemd unit files into [UnitOption] and [UnitSection] structures
//   - Serialize Go structures back into unit file format
//   - Escape and unescape unit names according to systemd conventions
//
// Unit files are configuration files that describe how systemd should manage
// services, sockets, devices, and other system resources.
package unit