Reorganization including fixing blockinfile being used multiple times on the same file causing entries to get overwritten.

This commit is contained in:
2021-02-03 07:36:51 -06:00
parent 51766c8db6
commit 1a4a176933
7 changed files with 82 additions and 51 deletions

View File

@ -20,18 +20,31 @@
- name: Workstation | FreeBSD | GUI | Create rc.conf Entries
blockinfile:
path: /etc/rc.conf
marker: "# {mark} MANAGED BY ANSIBLE | GUI Components"
block: |
dbus_enable="YES"
hald_enable="YES"
gnome_enable="YES"
gdm_enable="YES"
fusefs_enable="YES"
backup: yes
- name: Workstation | FreeBSD | GUI | Create fstab Entries
blockinfile:
- name: Workstation | FreeBSD | GUI | Create proc fstab Entry
lineinfile:
path: /etc/fstab
block: |
proc /proc procfs rw 0 0
regexp: '^proc'
line: proc /proc procfs rw 0 0
state: present
backup: yes
- name: Workstation | FreeBSD | GUI | Create proc fstab Comment
lineinfile:
path: /etc/fstab
regexp: '^# MANAGED BY ANSIBLE | Leet Share'
line: '# MANAGED BY ANSIBLE | Leet Share'
state: present
insertbefore: '^proc'
- name: Workstation | FreeBSD | GUI | Mount All
shell: mount -a
args:
warn: false