Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrConfig = errors.New("no configuration to seal") ErrUser = errors.New("invalid aid") ErrHome = errors.New("invalid home directory") ErrName = errors.New("invalid username") )
View Source
var ( ErrWayland = errors.New(waylandDisplay + " unset") ErrXDisplay = errors.New(display + " unset") )
Functions ¶
This section is empty.
Types ¶
type App ¶
type App interface { // ID returns a copy of App's unique ID. ID() fst.ID // Start sets up the system and starts the App. Start() error // Wait waits for App's process to exit and reverts system setup. Wait() (int, error) // WaitErr returns error returned by the underlying wait syscall. WaitErr() error Seal(config *fst.Config) error String() string }
type RevertCompoundError ¶
type StateStoreError ¶
type StateStoreError struct { // whether inner function was called Inner bool // error returned by state.Store Do method DoErr error // error returned by state.Backend Save method InnerErr error // any other errors needing to be tracked Err error }
StateStoreError is returned for a failed state save
func (*StateStoreError) Error ¶
func (e *StateStoreError) Error() string
func (*StateStoreError) Unwrap ¶
func (e *StateStoreError) Unwrap() (errs []error)
Click to show internal directories.
Click to hide internal directories.