mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			936 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			936 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Install /etc/usbmount/mount.d/70-usb-library from template, if usb_lib_enabled
 | 
						|
  template:
 | 
						|
    src: mount.d/70-usb-library
 | 
						|
    dest: /etc/usbmount/mount.d/
 | 
						|
    owner: root
 | 
						|
    group: root
 | 
						|
    mode: '0751'
 | 
						|
  when: usb_lib_enabled | bool
 | 
						|
 | 
						|
- name: Install /etc/usbmount/umount.d/70-usb-library from template, if usb_lib_enabled
 | 
						|
  template:
 | 
						|
    src: umount.d/70-usb-library
 | 
						|
    dest: /etc/usbmount/umount.d
 | 
						|
    owner: root
 | 
						|
    group: root
 | 
						|
    mode: '0751'
 | 
						|
  when: usb_lib_enabled | bool
 | 
						|
 | 
						|
- name: Remove /etc/usbmount/mount.d/70-usb-library if not usb_lib_enabled
 | 
						|
  file:
 | 
						|
    path: /etc/usbmount/mount.d/70-usb-library
 | 
						|
    state: absent
 | 
						|
  when: not usb_lib_enabled
 | 
						|
 | 
						|
- name: Remove /etc/usbmount/umount.d/70-usb-library if not usb_lib_enabled
 | 
						|
  file:
 | 
						|
    path: /etc/usbmount/umount.d/70-usb-library
 | 
						|
    state: absent
 | 
						|
  when: not usb_lib_enabled
 | 
						|
 | 
						|
- name: Restart 'nginx' systemd service
 | 
						|
  systemd:
 | 
						|
    name: nginx
 | 
						|
    state: restarted
 |