Documentation ¶
Overview ¶
Package mount handles filesystem mount operations.
Index ¶
- func ForceGGroupsV1() bool
- func SafeUnmount(ctx context.Context, printer func(string, ...any), target string) error
- func UnmountAll() error
- type NewPointOption
- type OperationOption
- type OperationOptions
- type Point
- func NewOverlayWithBasePath(sources []string, target, basePath string, opts ...NewPointOption) *Point
- func NewPoint(source, target, fstype string, opts ...NewPointOption) *Point
- func NewReadonlyOverlay(sources []string, target string, opts ...NewPointOption) *Point
- func NewSystemOverlay(sources []string, target string, opts ...NewPointOption) *Point
- func NewVarOverlay(sources []string, target string, opts ...NewPointOption) *Point
- func Squashfs(target, squashfsFile string) (*Point, error)
- type Points
- type PrinterOptions
- type UnmountOption
- type UnmountOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ForceGGroupsV1 ¶
func ForceGGroupsV1() bool
ForceGGroupsV1 returns the cgroup version to be used (only for !container mode).
func SafeUnmount ¶
SafeUnmount unmounts the target path, first without force, then with force if the first attempt fails.
It makes sure that unmounting has a finite operation timeout.
func UnmountAll ¶
func UnmountAll() error
UnmountAll attempts to unmount all the mounted filesystems via "self" mountinfo.
Types ¶
type NewPointOption ¶
type NewPointOption func(*Point)
NewPointOption is a mount point option.
func WithExtraDirs ¶
func WithExtraDirs(dirs ...string) NewPointOption
WithExtraDirs sets the extra directories to be created on mount.
func WithProjectQuota ¶
func WithProjectQuota(enabled bool) NewPointOption
WithProjectQuota sets the project quota flag.
type OperationOption ¶
type OperationOption func(*OperationOptions)
OperationOption is a mount option.
func WithMountPrinter ¶
func WithMountPrinter(printer func(string, ...any)) OperationOption
WithMountPrinter sets the printer.
func WithSkipIfMounted ¶
func WithSkipIfMounted() OperationOption
WithSkipIfMounted sets the skip if mounted flag.
type OperationOptions ¶
type OperationOptions struct { PrinterOptions SkipIfMounted bool TargetMode os.FileMode }
OperationOptions are mount options.
type Point ¶
type Point struct {
// contains filtered or unexported fields
}
Point represents a mount point.
func NewOverlayWithBasePath ¶
func NewOverlayWithBasePath(sources []string, target, basePath string, opts ...NewPointOption) *Point
NewOverlayWithBasePath creates a new overlay mount point with a base path.
func NewPoint ¶
func NewPoint(source, target, fstype string, opts ...NewPointOption) *Point
NewPoint creates a new mount point.
func NewReadonlyOverlay ¶
func NewReadonlyOverlay(sources []string, target string, opts ...NewPointOption) *Point
NewReadonlyOverlay creates a new read-only overlay mount point.
func NewSystemOverlay ¶
func NewSystemOverlay(sources []string, target string, opts ...NewPointOption) *Point
NewSystemOverlay creates a new /system overlay mount point.
func NewVarOverlay ¶
func NewVarOverlay(sources []string, target string, opts ...NewPointOption) *Point
NewVarOverlay creates a new /var overlay mount point.
func Squashfs ¶
Squashfs binds the squashfs to the loop device and returns the mountpoint for it to the specified target.
func (*Point) IsMounted ¶
IsMounted checks if the mount point is mounted by checking the mount on the target.
func (*Point) Mount ¶
func (p *Point) Mount(opts ...OperationOption) (unmounter func() error, err error)
Mount the mount point.
Mount returns an unmounter function to unmount the mount point.
func (*Point) Unmount ¶
func (p *Point) Unmount(opts ...UnmountOption) error
Unmount the mount point.
type Points ¶
type Points []*Point
Points is a list of mount points.
func CGroupMountPoints ¶
func CGroupMountPoints() Points
CGroupMountPoints returns the cgroup mount points.
func OverlayMountPoints ¶
func OverlayMountPoints() Points
OverlayMountPoints returns the mountpoints required to boot the system. These mountpoints are used as overlays on top of the read only rootfs.
func PseudoSubMountPoints ¶
func PseudoSubMountPoints() Points
PseudoSubMountPoints returns the sub-mountpoints under Pseudo().
func (Points) Mount ¶
func (points Points) Mount(opts ...OperationOption) (unmounter func() error, err error)
Mount all mount points.
type PrinterOptions ¶
PrinterOptions are printer options.
func (PrinterOptions) Printf ¶
func (o PrinterOptions) Printf(format string, args ...any)
Printf prints a formatted string (or skips if printer is nil).
type UnmountOption ¶
type UnmountOption func(*UnmountOptions)
UnmountOption is an unmount option.
func WithUnmountPrinter ¶
func WithUnmountPrinter(printer func(string, ...any)) UnmountOption
WithUnmountPrinter sets the printer.
type UnmountOptions ¶
type UnmountOptions struct {
PrinterOptions
}
UnmountOptions is unmount options.