aboutsummaryrefslogtreecommitdiffhomepage
path: root/hst/fsbind.go
diff options
context:
space:
mode:
Diffstat (limited to 'hst/fsbind.go')
-rw-r--r--hst/fsbind.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/hst/fsbind.go b/hst/fsbind.go
index bb1fc036..70e8bdc1 100644
--- a/hst/fsbind.go
+++ b/hst/fsbind.go
@@ -4,8 +4,8 @@ import (
"encoding/gob"
"strings"
- "hakurei.app/container/bits"
"hakurei.app/container/check"
+ "hakurei.app/container/comp"
"hakurei.app/container/fhs"
)
@@ -97,16 +97,16 @@ func (b *FSBind) Apply(z *ApplyState) {
}
var flags int
if b.Write {
- flags |= bits.BindWritable
+ flags |= comp.BindWritable
}
if b.Device {
- flags |= bits.BindDevice | bits.BindWritable
+ flags |= comp.BindDevice | comp.BindWritable
}
if b.Ensure {
- flags |= bits.BindEnsure
+ flags |= comp.BindEnsure
}
if b.Optional {
- flags |= bits.BindOptional
+ flags |= comp.BindOptional
}
switch {