2020-12-24 03:20:31 +00:00
|
|
|
package constant
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// DefaultDirMode is the default file mode to apply to created directories.
|
2021-01-26 03:53:51 +00:00
|
|
|
DefaultDirMode = 0o755
|
2020-12-24 03:20:31 +00:00
|
|
|
// DefaultFileMode is the default file mode to apply to created files.
|
|
|
|
|
DefaultFileMode = 0o600
|
2022-05-23 22:18:19 +00:00
|
|
|
// DefaultSystemdUnitMode is the required file mode to systemd unit files.
|
|
|
|
|
DefaultSystemdUnitMode = 0o644
|
2022-03-21 17:53:53 +00:00
|
|
|
// DesktopAppExecName is the name of Fleet's Desktop executable.
|
2022-04-01 20:28:51 +00:00
|
|
|
//
|
|
|
|
|
// We use fleet-desktop as name to properly identify the process when listing
|
|
|
|
|
// running processes/tasks.
|
2022-03-21 17:53:53 +00:00
|
|
|
DesktopAppExecName = "fleet-desktop"
|
2020-12-24 03:20:31 +00:00
|
|
|
)
|