func newMount()

in gce-containers-startup/volumes/volumes.go [74:80]


func newMount(device, mountPoint, fsType string, opts ...mountOption) mount {
	mnt := mount{device, mountPoint, fsType, ""}
	for _, opt := range opts {
		opt(&mnt)
	}
	return mnt
}