mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-28 14:04:42 -05:00
* move debugd code into internal folder * Fix paths in CMakeLists.txt Signed-off-by: Fabian Kammel <fk@edgeless.systems>
27 lines
734 B
Go
27 lines
734 B
Go
// Code generated by "stringer -type=SystemdAction"; DO NOT EDIT.
|
|
|
|
package deploy
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[Unknown-0]
|
|
_ = x[Start-1]
|
|
_ = x[Stop-2]
|
|
_ = x[Restart-3]
|
|
_ = x[Reload-4]
|
|
}
|
|
|
|
const _SystemdAction_name = "UnknownStartStopRestartReload"
|
|
|
|
var _SystemdAction_index = [...]uint8{0, 7, 12, 16, 23, 29}
|
|
|
|
func (i SystemdAction) String() string {
|
|
if i >= SystemdAction(len(_SystemdAction_index)-1) {
|
|
return "SystemdAction(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _SystemdAction_name[_SystemdAction_index[i]:_SystemdAction_index[i+1]]
|
|
}
|