mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-09-21 10:17:15 +00:00
bug: Setup / as shared mount on alpine (#445)
* 🐛 Setup / as shared mount on alpine Since this is not handled in the boot process, we do this in our devoted file to setup the rootfs configuration Signed-off-by: Ettore Di Giacinto <mudler@kairos.io> * 🐧 Correctly detect alpine flavors Signed-off-by: Ettore Di Giacinto <mudler@kairos.io> Signed-off-by: Ettore Di Giacinto <mudler@kairos.io>
This commit is contained in:
committed by
Itxaka
parent
ade95362cb
commit
8bf1babcce
@@ -52,7 +52,7 @@ func Flavor() string {
|
||||
|
||||
func IsOpenRCBased() bool {
|
||||
f := Flavor()
|
||||
return f == "alpine" || f == "alpine-arm-rpi"
|
||||
return strings.Contains(f, "alpine")
|
||||
}
|
||||
|
||||
func GetInterfaceIP(in string) string {
|
||||
|
Reference in New Issue
Block a user