2020-02-13 20:16:59 +00:00
# TO DO: (2020-02-13)
# - Look at analogous NGINX logic for http://box/usb in
# nginx/templates/iiab.conf.j2 and make that visually meaningful for teachers:
# https://github.com/iiab/iiab/blob/master/roles/nginx/templates/iiab.conf.j2#L5-L8
2020-01-30 09:00:00 +00:00
2017-05-27 18:09:50 +00:00
2020-02-13 20:16:59 +00:00
# "How do i fail a task in Ansible if the variable contains a boolean value?
# I want to perform input validation for Ansible playbooks"
# https://stackoverflow.com/questions/46664127/how-do-i-fail-a-task-in-ansible-if-the-variable-contains-a-boolean-value-i-want/46667499#46667499
2020-01-30 09:00:00 +00:00
2020-02-13 20:16:59 +00:00
# We assume 0-init/tasks/validate_vars.yml has DEFINITELY been run, so no need
# to re-check whether vars are defined here. As Ansible vars cannot be unset:
# https://serverfault.com/questions/856729/how-to-destroy-delete-unset-a-variable-value-in-ansible
2020-01-30 09:00:00 +00:00
2020-02-13 20:16:59 +00:00
- name : Assert that "usb_lib_install is sameas true" (boolean not string etc)
assert :
that : usb_lib_install is sameas true
fail_msg : "PLEASE SET 'usb_lib_install: True' e.g. IN: /etc/iiab/local_vars.yml"
quiet : yes
2020-01-30 09:00:00 +00:00
2020-02-13 20:16:59 +00:00
- name : Assert that "usb_lib_enabled | type_debug == 'bool'" (boolean not string etc)
assert :
that : usb_lib_enabled | type_debug == 'bool'
fail_msg : "PLEASE GIVE VARIABLE 'usb_lib_enabled' A PROPER (UNQUOTED) ANSIBLE BOOLEAN VALUE e.g. IN: /etc/iiab/local_vars.yml"
quiet : yes
2017-05-27 18:09:50 +00:00
2020-02-13 20:16:59 +00:00
- name : Install USB_LIB if 'usb_lib_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
include_tasks : install.yml
when : usb_lib_installed is undefined
2017-05-27 18:09:50 +00:00
2021-03-26 12:19:46 +00:00
# If setup.yml becomes the norm in future, put the 2-3 stanzas below in there:
2021-03-26 04:04:05 +00:00
- name : "Set 'umask=0000' for {VFAT/FAT32, NTFS, exFAT} using var FS_MOUNTOPTIONS in /etc/usbmount/usbmount.conf, so Kolibri exports work"
lineinfile :
regexp : '^FS_MOUNTOPTIONS=.*'
line : 'FS_MOUNTOPTIONS="-fstype=vfat,umask=0000 -fstype=ntfs,umask=0000 -fstype=exfat,umask=0000"'
path : /etc/usbmount/usbmount.conf
when : usb_lib_umask0000_for_kolibri
# Setting 'umask=0000' for all filesystems: (much the same thing as above, as
# the mount command does not use this umask setting for filesystems like ext4)
#- name: "Add ',umask=0000' to MOUNTOPTIONS var in /etc/usbmount/usbmount.conf, so Kolibri exports work"
# lineinfile:
# regexp: '^MOUNTOPTIONS=.*'
# line: 'MOUNTOPTIONS="sync,noexec,nodev,noatime,nodiratime,umask=0000"'
# path: /etc/usbmount/usbmount.conf
# when: usb_lib_umask0000_for_kolibri
- name : 'Set FS_MOUNTOPTIONS="" in /etc/usbmount/usbmount.conf, e.g. if Kolibri will not be used'
lineinfile :
regexp : '^FS_MOUNTOPTIONS=.*'
2021-03-26 12:19:46 +00:00
line : 'FS_MOUNTOPTIONS=""' # Restore apt pkg default, e.g. for runrole
2021-03-26 04:04:05 +00:00
path : /etc/usbmount/usbmount.conf
when : not usb_lib_umask0000_for_kolibri
2020-01-30 09:00:00 +00:00
2021-03-26 12:19:46 +00:00
2020-05-17 05:06:48 +00:00
- name : Enable/Disable/Restart Apache if primary
include_tasks : apache.yml
when : not nginx_enabled
- name : Enable/Disable/Restart NGINX if primary
include_tasks : nginx.yml
2020-10-16 20:46:19 +00:00
when : nginx_enabled
2020-01-30 09:00:00 +00:00
2021-04-29 15:03:23 +00:00
# 2021-04-29: Clean up here to catch the already installed users, remove for the next release (PR #2760)
2021-04-28 16:08:52 +00:00
- name : Remove /etc/usbmount/mount.d/00_create_model_symlink
file :
path : /etc/usbmount/mount.d/00_create_model_symlink
state : absent
2020-01-30 09:00:00 +00:00
2018-07-19 03:25:32 +00:00
- name : Put variable in iiab.env that enables display of content at root of USB
2018-03-31 03:44:39 +00:00
lineinfile :
2018-10-31 04:20:01 +00:00
path : "{{ iiab_env_file }}"
2018-03-31 03:44:39 +00:00
regexp : "^IIAB_USB_LIB_SHOW_ALL.*"
line : "IIAB_USB_LIB_SHOW_ALL={{ iiab_usb_lib_show_all }}"
2020-01-30 09:00:00 +00:00
- name : Add 'usb_lib' variable values to {{ iiab_ini_file }}
2018-02-11 16:07:23 +00:00
ini_file :
2020-02-13 20:16:59 +00:00
path : "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
2020-01-30 09:00:00 +00:00
section : usb_lib
2018-02-11 16:07:23 +00:00
option : "{{ item.option }}"
2020-01-12 02:41:37 +00:00
value : "{{ item.value | string }}"
2017-05-27 18:09:50 +00:00
with_items :
- option : name
2020-02-13 20:16:59 +00:00
value : USB_LIB
2017-05-27 18:09:50 +00:00
- option : description
2020-02-13 20:16:59 +00:00
value : '"USB_LIB automounts Teacher Content on USB drives to /library/www/html/local_content, so students can browse it almost immediately at http://box/usb"'
- option : usb_lib_install
value : "{{ usb_lib_install }}"
- option : usb_lib_enabled
2017-05-27 18:09:50 +00:00
value : "{{ usb_lib_enabled }}"
2021-03-26 04:04:05 +00:00
- option : usb_lib_umask0000_for_kolibri
value : "{{ usb_lib_umask0000_for_kolibri }}"