Home | History | Annotate | Download | only in bin

Lines Matching defs:mount

34         @param mount_options: Optional. The options to pass to mount -o.
61 for line in utils.system_output('mount').splitlines():
72 for line in utils.system_output('mount').splitlines():
182 Picks up mount point information about the machine mounts. By default, we
183 try to associate mount points with UUIDs, because in newer distros the
357 # make and mount all the partitions in parallel
435 self.mount(mountpoint)
440 Executes a test fs-style (umount,mkfs,mount,test)
447 @param mountpoint_func: function to return mount point string
483 Find the mount point of this partition object.
491 @returns a string with the mount point of the partition or None if not
639 def mount(self, mountpoint=None, fstype=None, args='', record=True):
641 Mount this partition to a mount point
647 @param args: Arguments to be passed to "mount" command.
648 @param record: If True, output result of mount operation to autotest
671 mount_cmd = "mount %s %s %s" % (args, self.device, mountpoint)
674 err = 'Attempted to mount mounted device'
678 err = 'Attempted to mount busy mountpoint'
683 # We have to get an exclusive lock here - mount/umount are racy
760 # We have to get an exclusive lock here - mount/umount are racy