salt.states.mount

Mounting of filesystems

Mount any type of mountable filesystem with the mounted function:

/mnt/sdb:
  mount.mounted:
    - device: /dev/sdb1
    - fstype: ext4
    - mkmnt: True
    - opts:
      - defaults

/srv/bigdata:
  mount.mounted:
    - device: UUID=066e0200-2867-4ebe-b9e6-f30026ca2314
    - fstype: xfs
    - opts: nobootwait,noatime,nodiratime,nobarrier,logbufs=8
    - dump: 0
    - pass_num: 2
    - persist: True
    - mkmnt: True
salt.states.mount.mod_watch(name, user=None, **kwargs)

The mounted watcher, called to invoke the watch command.

name
The name of the mount point
salt.states.mount.mounted(name, device, fstype, mkmnt=False, opts='defaults', dump=0, pass_num=0, config='/etc/fstab', persist=True, mount=True, user=None, match_on='auto', extra_mount_invisible_options=None, extra_mount_invisible_keys=None, extra_mount_ignore_fs_keys=None, extra_mount_translate_options=None, hidden_opts=None)

Verify that a device is mounted

name
The path to the location where the device is to be mounted
device
The device name, typically the device node, such as /dev/sdb1 or UUID=066e0200-2867-4ebe-b9e6-f30026ca2314 or LABEL=DATA
fstype
The filesystem type, this will be xfs, ext2/3/4 in the case of classic filesystems, and fuse in the case of fuse mounts
mkmnt
If the mount point is not present then the state will fail, set mkmnt: True to create the mount point if it is otherwise not present
opts
A list object of options or a comma delimited list
dump
The dump value to be passed into the fstab, Default is 0
pass_num
The pass value to be passed into the fstab, Default is 0
config
Set an alternative location for the fstab, Default is /etc/fstab
persist
Set if the mount should be saved in the fstab, Default is True
mount
Set if the mount should be mounted immediately, Default is True
user
The user to own the mount; this defaults to the user salt is running as on the minion
match_on
A name or list of fstab properties on which this state should be applied. Default is auto, a special value indicating to guess based on fstype. In general, auto matches on name for recognized special devices and device otherwise.
extra_mount_invisible_options
A list of extra options that are not visible through the /proc/self/mountinfo interface. If a option is not visible through this interface it will always remount the device. This Option extends the builtin mount_invisible_options list.
extra_mount_invisible_keys

A list of extra key options that are not visible through the /proc/self/mountinfo interface. If a key option is not visible through this interface it will always remount the device. This Option extends the builtin mount_invisible_keys list. A good example for a key Option is the password Option:

password=badsecret
extra_ignore_fs_keys

A dict of filesystem options which should not force a remount. This will update the internal dictionary. The dict should look like this:

{
'ramfs': ['size']

}

extra_mount_translate_options

A dict of mount options that gets translated when mounted. To prevent a remount add additional Options to the default dictionary. This will update the internal dictionary. The dictionary should look like this:

{
'tcp': 'proto=tcp', 'udp': 'proto=udp'

}

hidden_opts

A list of mount options that will be ignored when considering a remount as part of the state application

2015.8.2 新版功能.

salt.states.mount.swap(name, persist=True, config='/etc/fstab')

Activates a swap device

/root/swapfile:
  mount.swap

注解

swap does not currently support LABEL

salt.states.mount.unmounted(name, device=None, config='/etc/fstab', persist=False, user=None)

0.17.0 新版功能.

Verify that a device is not mounted

name
The path to the location where the device is to be unmounted from
device

The device to be unmounted. This is optional because the device could be mounted in multiple places.

2015.5.0 新版功能.

config
Set an alternative location for the fstab, Default is /etc/fstab
persist
Set if the mount should be purged from the fstab, Default is False
user
The user to own the mount; this defaults to the user salt is running as on the minion