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
/var/lib/bigdata:
mount.mounted:
- device: /srv/bigdata
- fstype: none
- opts: bind
- dump: 0
- pass_num: 0
- persist: True
- mkmnt: True
Makes sure that a fstab mount point is absent.
The name of block device. Can be any valid fs_spec value.
Mount point (target) for the filesystem.
Select the final value for fs_spec. Can be [None
,
device
, label
, uuid
, partlabel
,
partuuid
]. If None
, the value for fs_spect will be the
parameter name
, in other case will search the correct
value based on the device name. For example, for uuid
, the
value for fs_spec will be of type 'UUID=xxx' instead of the
device name set in name
.
Place where the fstab file lives
Makes sure that a fstab mount point is present.
The name of block device. Can be any valid fs_spec value.
Mount point (target) for the filesystem.
The type of the filesystem (e.g. ext4, xfs, btrfs, ...)
The mount options associated with the filesystem. Default is
defaults
.
Field is used by dump to determine which fs need to be
dumped. Default is 0
Field is used by fsck to determine the order in which
filesystem checks are done at boot time. Default is 0
Field is used only in AIX systems to determine if the
filesystem will be mounted by mount all
Select the final value for fs_spec. Can be [None
,
device
, label
, uuid
, partlabel
,
partuuid
]. If None
, the value for fs_spect will be the
parameter name
, in other case will search the correct
value based on the device name. For example, for uuid
, the
value for fs_spec will be of type 'UUID=xxx' instead of the
device name set in name
.
Place where the fstab file lives. Default is /etc/fstab
Set if the mount should be mounted immediately. Default is
True
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.
By default, if the entry is found in the fstab file but is
different from the expected content (like different options),
the entry will be replaced with the correct content. If this
parameter is set to True
and the line is found, the
original content will be preserved.
The mounted watcher, called to invoke the watch command.
Note
This state exists to support special handling of the watch
requisite. It should not be called directly.
Parameters for this function should be set by the state being triggered.
The name of the mount point
Verify that a device is mounted
The path to the location where the device is to be mounted
The device name, typically the device node, such as /dev/sdb1
or UUID=066e0200-2867-4ebe-b9e6-f30026ca2314
or LABEL=DATA
The filesystem type, this will be xfs
, ext2/3/4
in the case of classic
filesystems, fuse
in the case of fuse mounts, and nfs
in the case of nfs mounts
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
A list object of options or a comma delimited list
The dump value to be passed into the fstab, Default is 0
The pass value to be passed into the fstab, Default is 0
Set an alternative location for the fstab, Default is /etc/fstab
Set if the mount should be saved in the fstab, Default is True
Set if the mount should be mounted immediately, Default is True
The account used to execute the mount; this defaults to the user salt is running as on the minion
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.
A list of device exact names or regular expressions which should not force a remount. For example, glusterfs may be mounted with a comma-separated list of servers in fstab, but the /proc/self/mountinfo will show only the first available server.
{% set glusterfs_ip_list = ['10.0.0.1', '10.0.0.2', '10.0.0.3'] %}
mount glusterfs volume:
mount.mounted:
- name: /mnt/glusterfs_mount_point
- device: {{ glusterfs_ip_list|join(',') }}:/volume_name
- fstype: glusterfs
- opts: _netdev,rw,defaults,direct-io-mode=disable
- mkmnt: True
- persist: True
- dump: 0
- pass_num: 0
- device_name_regex:
- ({{ glusterfs_ip_list|join('|') }}):/volume_name
New in version 2016.11.0.
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.
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
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']
}
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'
}
A list of mount options that will be ignored when considering a remount as part of the state application
New in version 2015.8.2.
If set to False
, this option disables the default behavior of
copying the options from the bind mount if it was found to be active.
New in version 3006.0.
Activates a swap device
/root/swapfile:
mount.swap
Note
swap
does not currently support LABEL
New in version 0.17.0.
Verify that a device is not mounted
The path to the location where the device is to be unmounted from
The device to be unmounted. This is optional because the device could be mounted in multiple places.
New in version 2015.5.0.
Set an alternative location for the fstab, Default is /etc/fstab
Set if the mount should be purged from the fstab, Default is False
The user to own the mount; this defaults to the user salt is running as on the minion