2022-07-31 11:16:42 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
var (
|
2022-07-31 11:19:24 -04:00
|
|
|
DAEMON_START = "Starting headless9"
|
|
|
|
CMD_SYNTAX = "Command structure: \"headless9 $verb $service\""
|
2022-10-23 00:16:20 -04:00
|
|
|
CTL_UNABLE_WRITE = "Unable to write to Control Socket. Please check the file %+v and that it's permissions are 660"
|
|
|
|
CTL_NOT_OPEN = "Unable to open Control Socket. Please check the file %+v and that its permissions are 660"
|
|
|
|
CTL_NOT_CLEAR = "Unable to clear Control Socket. Please check the file %+v and that its permissions are 660"
|
|
|
|
CTL_NOT_REWOUND = "Unable to rewind Control Socket. Please check the file %+v and that its permissions are 660"
|
2022-07-31 11:19:24 -04:00
|
|
|
DAEMON_FILE_REFRESH = "Refreshing controlFile %+v"
|
2022-10-22 23:08:09 -04:00
|
|
|
DAEMON_SVC_INVALID = "Invalid command `%v`, skipping. Args: { %+v }"
|
|
|
|
DAEMON_SVC_DISABLED = "%+v is disabled, skipping!"
|
2022-07-31 11:19:24 -04:00
|
|
|
DAEMON_SVC_EXISTS = "%+v exists as PID %+v"
|
|
|
|
DAEMON_SVC_FAIL = "Error starting service %+v, see log for more info."
|
2022-10-22 23:08:09 -04:00
|
|
|
DAEMON_SVC_MISSING = "Svc not detected, starting: %+v"
|
|
|
|
DAEMON_CTL_PROCESSING = "Processing command: `%+v`"
|
|
|
|
DAEMON_CTL_PROCESSED = "Processed command `%+v` in %+v"
|
|
|
|
DAEMON_CTL_FAILED = "Processing command `%+v` failed after %+v"
|
2022-07-31 11:19:24 -04:00
|
|
|
)
|