Home | History | Annotate | Download | only in virt

Lines Matching defs:mount

2357     @src: mount source
2358 @mount_point: mount point
2375 def mount(src, mount_point, type, perm="rw"):
2377 Mount the src into mount_point of the host.
2379 @src: mount source
2380 @mount_point: mount point
2382 @perm: mount premission
2392 mount_cmd = "mount -t %s %s %s -o %s" % (type, src, mount_point, perm)
2398 logging.debug("Verify the mount through /etc/mtab")