mirror of
https://github.com/kairos-io/immucore.git
synced 2025-06-23 05:17:36 +00:00
9 lines
242 B
Go
9 lines
242 B
Go
|
package constants
|
||
|
|
||
|
const PersistentStateTarget = "/usr/local/.state"
|
||
|
|
||
|
func DefaultRWPaths() []string {
|
||
|
// Default RW_PATHS to mount if there are none defined
|
||
|
return []string{"/etc", "/root", "/home", "/opt", "/srv", "/usr/local", "/var"}
|
||
|
}
|