Hyperling
791dc245a6
* Add volume key controls. * Add placeholder for LBRY app. * Refactor gui into gnome and packages. Remove deprecated lineinfiles. Enhance package management. * Variablize tar to fix FreeBSD. * Variablize tar to fix FreeBSD. * Take FreeBSD gui.yml refactor into account. * Unfinished changes to use self-signed cert so local traffic can hit https. Server starts fine, but getting "gnutls_handshake() failed: An unexpected TLS packet was received." on client's `git clone`. * Make D2D optional. FreeBSD is still having a hard time compiling it. * Use a block for Dash To Dock so only one ignore_errors is necessary. * Deprecate miner section since machines have been decommissioned. * Remove deprecated file. * Switch to lightdm on FreeBSD. * Automate GPU driver installation. * Updated DWM config and added TODO's. * Move lynis to src folder for cleanliness. * Remove debug. * Refactor for "shared" system type folder. * Fix FreeBSD gpu.yml location. * Add a default hosts file to hide warnings.
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
---
|
|
# Mount network shares.
|
|
|
|
- name: Workstation | Settings | NFS | Facts
|
|
set_fact:
|
|
media_folder: /mnt/media
|
|
mount_number: 0
|
|
|
|
- name: Workstation | Settings | NFS | Facts (Linux)
|
|
set_fact:
|
|
mount_options: defaults
|
|
when: ansible_system == "Linux"
|
|
|
|
- name: Workstation | Settings | NFS | Facts (FreeBSD)
|
|
set_fact:
|
|
mount_options: rw
|
|
when: ansible_system == "FreeBSD"
|
|
|
|
|
|
- name: Workstation | Settings | NFS | Install (Linux)
|
|
package:
|
|
name:
|
|
- "{{ nfs }}"
|
|
state: present
|
|
when: ansible_system == "Linux"
|
|
|
|
# https://www.unixmen.com/setup-nfs-server-on-freebsd/
|
|
- name: Workstation | Settings | NFS | Install (FreeBSD)
|
|
blockinfile:
|
|
path: "{{ rc_conf }}"
|
|
marker: "# {mark} MANAGED BY ANSIBLE | NFS Components"
|
|
block: |
|
|
nfs_server_enable="YES"
|
|
nfs_server_flags="-u -t -n 4"
|
|
rpcbind_enable="YES"
|
|
mountd_flags="-r"
|
|
mountd_enable="YES"
|
|
nfs_client_enable="YES"
|
|
nfs_client_flags="-n 4"
|
|
rpc_lockd_enable="YES"
|
|
rpc_statd_enable="YES"
|
|
create: yes
|
|
backup: yes
|
|
when: ansible_system == "FreeBSD"
|
|
|
|
|
|
- name: Workstation | Settings | NFS | Create Folders
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
mode: '0777'
|
|
loop:
|
|
- "{{ media_folder }}"
|
|
|
|
|
|
- name: Workstation | Settings | NFS | Create Mount Instructions
|
|
blockinfile:
|
|
path: /etc/fstab
|
|
marker: "# {mark} MANAGED BY ANSIBLE | Media"
|
|
block: |
|
|
htpc:/mnt/hdd_unsafe/media {{ media_folder }} nfs {{ mount_options }} {{ mount_number }} {{ mount_number }}
|
|
backup: yes
|