Config adjustments for Jellyfin/Samba deployment

- Ignored .vscode
- Added firewall exclusion option
- Allowed guest access in Samba
This commit is contained in:
Kris Lamoureux 2023-06-09 22:26:47 -04:00
parent 74a559f1f6
commit 228cd5795b
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925
5 changed files with 16 additions and 3 deletions

5
.gitignore vendored
View File

@ -1,3 +1,4 @@
.vagrant
.playbook
/environments/
.vagrant
.vscode
/environments/

View File

@ -1,6 +1,7 @@
allow_reboot: true
manage_firewall: true
manage_network: false
network_type: static
allow_reboot: true
packages:
- apache2-utils

View File

@ -9,6 +9,7 @@
- name: Import Firewall tasks
ansible.builtin.import_tasks: firewall.yml
tags: firewall
when: manage_firewall
- name: Import Network tasks
ansible.builtin.import_tasks: network.yml

View File

@ -50,3 +50,4 @@
from: "{{ item }}"
state: enabled
loop: "{{ samba.firewall }}"
when: manage_firewall

View File

@ -13,7 +13,16 @@
[{{ share.name }}]
path = {{ share.path }}
browsable = yes
{% if share.guest_allow is defined and share.guest_allow %}
guest ok = yes
{% else %}
guest ok = no
{% endif %}
read only = {{ 'yes' if share.read_only | default(false) else 'no' }}
{% if share.valid_users is defined %}
valid users = {{ share.valid_users }}
{% endif %}
{% if share.force_user is defined %}
force user = {{ share.force_user }}
{% endif %}
{% endfor %}