Skip to content
Snippets Groups Projects
Commit 9db261ce authored by Vladimír Štill's avatar Vladimír Štill
Browse files

ansible: Fstab for hesperia

parent 3a1adfa2
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,38 @@
- import_role:
name: common_deb
- name: "Setup fstab"
mount:
path: '{{item.path}}'
src: '{{item.src}}'
fstype: '{{item.fstype}}'
opts: '{{item.opts|default("defaults")}}'
dump: "0"
passno: '{{item.passno|default("0")}}'
state: '{{item.state|default("mounted")}}'
with_items:
- path: "/"
src: /dev/hsexprtest-vg/root
fstype: ext4
opts: errors=remount-ro
passno: 1
- path: "/boot"
src: "UUID=e25766ad-2d27-4109-86f6-723091bd15f2"
fstype: ext2
passno: 2
- path: none
src: /dev/hsexprtest-vg/swap
fstype: swap
state: present
- path: /tmp
src: /dev/hsexprtest-vg/tmp
fstype: ext4
opts: defaults,relatime
- name: exprTest groups
group:
name: '{{item.name}}'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment