mirror of
https://github.com/kairos-io/immucore.git
synced 2025-07-04 10:26:28 +00:00
13 lines
314 B
Go
13 lines
314 B
Go
package constants
|
|
|
|
import "errors"
|
|
|
|
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"}
|
|
}
|
|
|
|
var ErrAlreadyMounted = errors.New("already mounted")
|