Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kelchm
Created October 13, 2014 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelchm/b533ba46caf3fc3c7bf5 to your computer and use it in GitHub Desktop.
Save kelchm/b533ba46caf3fc3c7bf5 to your computer and use it in GitHub Desktop.
The command generated by mount.mounted includes 'configure' immediatly before the mount point. This does not seem to be valid and is causing it to fail.
{%- set fstab = salt['mount.fstab']() -%}
{% for mount in fstab %}
{% if mount == '/vz' %}
configure {{ mount }}:
mount.mounted:
- device: {{ fstab[mount]['device'] }}
- fstype: {{ fstab[mount]['fstype'] }}
- persist: true
- opts:
- defaults
- discard
{% endif %}
{% endfor %}
2014-10-13 15:23:31,873 [salt.loaded.int.module.cmdmod ][ERROR ] Command 'mount -o remount,defaults,discard -t ext4 /dev/sdb1 configure /vz ' failed with return code: 1
2014-10-13 15:23:31,874 [salt.loaded.int.module.cmdmod ][ERROR ] stderr: Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
2014-10-13 15:23:31,883 [salt.state ][ERROR ] Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
You have new mail in /var/spool/mail/root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment