release candidate
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
file:
|
||||
path: "{{ working_storage }}"
|
||||
state: directory
|
||||
mode: '0755'
|
||||
mode: '0777'
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
@ -20,14 +20,14 @@
|
||||
storage_unmounted: false
|
||||
|
||||
- name: Storage Handler Block
|
||||
when: storage_unmounted and mount_storge | bool
|
||||
when: storage_unmounted and mount_storge and extra_storage | bool
|
||||
block:
|
||||
|
||||
# find the device, architecture dependent
|
||||
# the arm64 is intended for the friendlyelec devices
|
||||
# which only have one sd slot, but still be careful
|
||||
- name: Storage Handler - Get Storage Device arm64
|
||||
when: '"arm64" in cpu_architecture'
|
||||
when: armcpu_check | bool
|
||||
block:
|
||||
|
||||
- name: Storage Handler - get boot device
|
||||
@ -39,7 +39,7 @@
|
||||
# this will choose the first storage device that it finds that isn't the boot device
|
||||
# be careful and don't run this on an inappropriate host
|
||||
- name: Storage Handler - Get Storage Device amd64
|
||||
when: '"amd64" in cpu_architecture'
|
||||
when: not armcpu_check | bool
|
||||
block:
|
||||
|
||||
- name: Storage Handler - get boot UUID
|
||||
@ -188,7 +188,7 @@
|
||||
path: "/etc/samba/smb.conf"
|
||||
search_string: "/etc/samba/smb.conf.d/vcr_rip.conf"
|
||||
line: "include = /etc/samba/smb.conf.d/vcr_rip.conf"
|
||||
insertbefore: '[global]'
|
||||
insertafter: '### smb.conf.d configs here'
|
||||
|
||||
- name: Working Folder - restart smbd
|
||||
service:
|
||||
|
||||
Reference in New Issue
Block a user