diff --git a/.github/workflows/10min-iiab-test-install.yml b/.github/workflows/10min-iiab-test-install.yml
new file mode 100644
index 000000000..d2b8bd056
--- /dev/null
+++ b/.github/workflows/10min-iiab-test-install.yml
@@ -0,0 +1,58 @@
+name: '"10 min" IIAB on Ubuntu 24.04 on x86-64'
+# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
+
+# https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/ci-cd/github-actions/triggers.html
+on: [push, pull_request, workflow_dispatch]
+
+# on:
+# push:
+#
+# pull_request:
+#
+# # Allows you to run this workflow manually from the Actions tab
+# workflow_dispatch:
+#
+# # Set your workflow to run every day of the week from Monday to Friday at 6:00 UTC
+# schedule:
+# - cron: "0 6 * * 1-5"
+
+jobs:
+ test-install:
+ runs-on: ubuntu-24.04
+ steps:
+ - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
+ - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
+ #- name: Dump GitHub context (typically almost 500 lines)
+ # env:
+ # GITHUB_CONTEXT: ${{ toJSON(github) }}
+ # run: echo "$GITHUB_CONTEXT"
+ - name: Check out repository code
+ uses: actions/checkout@v4
+ - run: echo "🍏 This job's status is ${{ job.status }}."
+ - name: GitHub Actions "runner" environment
+ run: |
+ uname -a # uname -srm
+ whoami # Typically 'runner' instead of 'root'
+ pwd # /home/runner/work/iiab/iiab == $GITHUB_WORKSPACE == ${{ github.workspace }}
+ # ls
+ # ls $GITHUB_WORKSPACE
+ # ls ${{ github.workspace }}
+ # ls -la /opt # az, containerd, google, hostedtoolcache, microsoft, mssql-tools, pipx, pipx_bin, post-generation, runner, vsts
+ # apt update
+ # apt dist-upgrade -y
+ # apt autoremove -y
+ - name: Set up /opt/iiab/iiab
+ run: |
+ mkdir /opt/iiab
+ mv $GITHUB_WORKSPACE /opt/iiab
+ mkdir $GITHUB_WORKSPACE # OR SUBSEQUENT STEPS WILL FAIL ('working-directory: /opt/iiab/iiab' hacks NOT worth it!)
+ - name: Set up /etc/iiab/local_vars.yml
+ run: |
+ sudo mkdir /etc/iiab
+ # touch /etc/iiab/local_vars.yml
+ sudo cp /opt/iiab/iiab/vars/local_vars_none.yml /etc/iiab/local_vars.yml
+ - run: sudo /opt/iiab/iiab/scripts/ansible
+ - run: sudo ./iiab-install
+ working-directory: /opt/iiab/iiab
+ - run: iiab-summary
+ - run: cat /etc/iiab/iiab_state.yml
diff --git a/.github/workflows/30min-iiab-test-install-deb12-on-rpi3.yml b/.github/workflows/30min-iiab-test-install-deb12-on-rpi3.yml
new file mode 100644
index 000000000..a8703346e
--- /dev/null
+++ b/.github/workflows/30min-iiab-test-install-deb12-on-rpi3.yml
@@ -0,0 +1,65 @@
+name: '"30 min" IIAB on Debian 12 on RPi 3'
+# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
+
+# https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/ci-cd/github-actions/triggers.html
+on: [push, pull_request, workflow_dispatch]
+
+# on:
+# push:
+#
+# pull_request:
+#
+# # Allows you to run this workflow manually from the Actions tab
+# workflow_dispatch:
+#
+# # Set your workflow to run every day of the week from Monday to Friday at 6:00 UTC
+# schedule:
+# - cron: "0 6 * * 1-5"
+
+jobs:
+ test-install:
+ runs-on: ubuntu-22.04
+ strategy:
+ matrix:
+ arch: [debian12]
+ include:
+ - arch: debian12
+ cpu: cortex-a7
+ cpu_info: cpuinfo/raspberrypi_3b
+ base_image: https://raspi.debian.net/daily/raspi_3_bookworm.img.xz
+ # source https://raspi.debian.net/daily-images/
+ steps:
+ #- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
+ #- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
+ #- name: Dump GitHub context (typically almost 500 lines)
+ # env:
+ # GITHUB_CONTEXT: ${{ toJSON(github) }}
+ # run: echo "$GITHUB_CONTEXT"
+ - name: Dump matrix context
+ env:
+ MATRIX_CONTEXT: ${{ toJSON(matrix) }}
+ run: echo "$MATRIX_CONTEXT"
+ - uses: actions/checkout@v3.1.0
+ - uses: pguyot/arm-runner-action@v2
+ with:
+ image_additional_mb: 1024
+ base_image: ${{ matrix.base_image }}
+ cpu: ${{ matrix.cpu }}
+ cpu_info: ${{ matrix.cpu_info }}
+ copy_repository_path: /opt/iiab/iiab
+ commands: |
+ echo "🍏 This job's status is ${{ job.status }}."
+ grep Model /proc/cpuinfo
+ uname -a # uname -srm
+ whoami # Typically 'root' instead of 'runner'
+ pwd # /home/runner/work/iiab/iiab == $GITHUB_WORKSPACE == ${{ github.workspace }}
+ apt-get update -y --allow-releaseinfo-change
+ apt-get install --no-install-recommends -y git
+ ls /opt/iiab/iiab
+ mkdir /etc/iiab
+ cp /opt/iiab/iiab/vars/local_vars_none.yml /etc/iiab/local_vars.yml
+ /opt/iiab/iiab/scripts/ansible
+ ./iiab-install
+ cd /opt/iiab/iiab
+ iiab-summary
+ cat /etc/iiab/iiab_state.yml
diff --git a/.github/workflows/30min-iiab-test-install-raspios-on-zero2w.yml b/.github/workflows/30min-iiab-test-install-raspios-on-zero2w.yml
new file mode 100644
index 000000000..9b521fee6
--- /dev/null
+++ b/.github/workflows/30min-iiab-test-install-raspios-on-zero2w.yml
@@ -0,0 +1,77 @@
+name: '"30 min" IIAB on RasPiOS on Zero 2 W'
+# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
+
+# https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/ci-cd/github-actions/triggers.html
+on: [push, pull_request, workflow_dispatch]
+
+# on:
+# push:
+#
+# pull_request:
+#
+# # Allows you to run this workflow manually from the Actions tab
+# workflow_dispatch:
+#
+# # Set your workflow to run every day of the week from Monday to Friday at 6:00 UTC
+# schedule:
+# - cron: "0 6 * * 1-5"
+
+jobs:
+ test-install:
+ runs-on: ubuntu-22.04
+ strategy:
+ matrix:
+ arch: [aarch64] #[zero_raspbian, zero_raspios, zero2_raspios, aarch64]
+ include:
+ #- arch: zero_raspbian
+ # cpu: arm1176
+ # cpu_info: cpuinfo/raspberrypi_zero_w
+ # base_image: raspbian_lite:latest
+ #- arch: zero_raspios
+ # cpu: arm1176
+ # cpu_info: cpuinfo/raspberrypi_zero_w
+ # base_image: raspios_lite:latest
+ #- arch: zero2_raspios
+ # cpu: cortex-a7
+ # cpu_info: cpuinfo/raspberrypi_zero2_w
+ # base_image: raspios_lite:latest
+ - arch: aarch64
+ cpu: cortex-a53
+ cpu_info: cpuinfo/raspberrypi_zero2_w_arm64
+ base_image: raspios_lite_arm64:latest
+ steps:
+ #- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
+ #- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
+ #- name: Dump GitHub context (typically almost 500 lines)
+ # env:
+ # GITHUB_CONTEXT: ${{ toJSON(github) }}
+ # run: echo "$GITHUB_CONTEXT"
+ - name: Dump matrix context
+ env:
+ MATRIX_CONTEXT: ${{ toJSON(matrix) }}
+ run: echo "$MATRIX_CONTEXT"
+ - uses: actions/checkout@v3.1.0
+ - uses: pguyot/arm-runner-action@v2
+ with:
+ image_additional_mb: 1024
+ base_image: ${{ matrix.base_image }}
+ cpu: ${{ matrix.cpu }}
+ cpu_info: ${{ matrix.cpu_info }}
+ copy_repository_path: /opt/iiab/iiab
+ commands: |
+ echo "🍏 This job's status is ${{ job.status }}."
+ #test `uname -m` = ${{ matrix.arch }}
+ grep Model /proc/cpuinfo
+ uname -a # uname -srm
+ whoami # Typically 'root' instead of 'runner'
+ pwd # /home/runner/work/iiab/iiab == $GITHUB_WORKSPACE == ${{ github.workspace }}
+ apt-get update -y --allow-releaseinfo-change
+ apt-get install --no-install-recommends -y git
+ ls /opt/iiab/iiab
+ mkdir /etc/iiab
+ cp /opt/iiab/iiab/vars/local_vars_none.yml /etc/iiab/local_vars.yml
+ /opt/iiab/iiab/scripts/ansible
+ ./iiab-install
+ cd /opt/iiab/iiab
+ iiab-summary
+ cat /etc/iiab/iiab_state.yml
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index caf8b425b..4ddde9b53 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,3 +1,3 @@
-# SEE THE NEW
[github.com/iiab/iiab/wiki/IIAB-Contributors-Guide](https://github.com/iiab/iiab/wiki/IIAB-Contributors-Guide)
+# SEE THE NEW
[github.com/iiab/iiab/wiki/Contributors-Guide-(EN)](https://github.com/iiab/iiab/wiki/Contributors-Guide-(EN))
# THANKS!
diff --git a/LICENSING.md b/LICENSING.md
index 53bc9d1ef..77c1ed0b9 100644
--- a/LICENSING.md
+++ b/LICENSING.md
@@ -15,6 +15,6 @@ this is to include the following two lines at the top of the file:
Licensed under the terms of the GNU GPL v2 or later; see LICENSE for details.
All files not containing an explicit copyright notice or terms of license in
-the file are Copyright © 2015-2022, Unleash Kids, and are licensed under the
+the file are Copyright © 2015-2025, Unleash Kids, and are licensed under the
terms of the GPLv2 license in the file named LICENSE in the root of the
repository.
diff --git a/README.md b/README.md
index 64b577547..fbfd30d35 100644
--- a/README.md
+++ b/README.md
@@ -2,26 +2,26 @@
# Internet-in-a-Box (IIAB)
-[Internet-in-a-Box (IIAB)](https://internet-in-a-box.org) is a "learning hotspot" that brings the Internet's crown jewels
-(Wikipedia in any language, thousands of Khan Academy videos, zoomable OpenStreetMap, electronic books, WordPress journaling, Toys from Trash electronics projects, ETC) to those without Internet.
+[Internet-in-a-Box (IIAB)](https://internet-in-a-box.org) is a “learning hotspot” that brings the Internet's crown jewels
+(Wikipedia in any language, thousands of Khan Academy videos, zoomable OpenStreetMap, electronic books, WordPress journaling, “Toys from Trash” electronics projects, ETC) to those without Internet.
You can build your own tiny, affordable server (an offline digital library) for your school, your medical clinic, your prison, your region and/or your very own family — accessible with any nearby smartphone, tablet or laptop.
Internet-in-a-Box gives you the DIY tools to:
1. Download then drag-and-drop to arrange the [very best of the World’s Free Knowledge](https://internet-in-a-box.org/#quality-content).
-2. Choose among [30+ powerful educational apps](https://wiki.iiab.io/go/FAQ#What_services_.28IIAB_apps.29_are_suggested_during_installation.3F) for your school or learning/teaching community, optionally with a complete LMS (learning management system).
+2. Choose among [30+ powerful educational apps](https://wiki.iiab.io/go/FAQ#What_services_%28IIAB_apps%29_are_suggested_during_installation%3F) for your school or learning/teaching community, optionally with a complete LMS (learning management system).
3. Exchange local/indigenous knowledge with nearby communities, using our [Manage Content](https://github.com/iiab/iiab-admin-console/blob/master/roles/console/files/help/InstContent.rst#manage-content) interface and possible mesh networking.
-FYI this [community product](https://en.wikipedia.org/wiki/Internet-in-a-Box) is enabled by professional volunteers working [side-by-side](https://wiki.iiab.io/go/FAQ#What_are_the_best_places_for_community_support.3F) with schools, clinics and libraries around the world. *Thank you for being a part of our http://OFF.NETWORK grassroots technology [movement](https://meta.wikimedia.org/wiki/Internet-in-a-Box)!*
+FYI this [community product](https://en.wikipedia.org/wiki/Internet-in-a-Box) is enabled by professional volunteers working [side-by-side](https://wiki.iiab.io/go/FAQ#What_are_the_best_places_for_community_support%3F) with schools, clinics and libraries around the world. *Thank you for being a part of our http://OFF.NETWORK grassroots technology [movement](https://meta.wikimedia.org/wiki/Internet-in-a-Box)!*
## Installation
-Install Internet-in-a-Box (IIAB) from [download.iiab.io](https://download.iiab.io/)
+Install Internet-in-a-Box (IIAB) from: [**download.iiab.io**](https://download.iiab.io/)
-Please see [FAQ.IIAB.IO](https://wiki.iiab.io/go/FAQ) which has 40+ questions and answers to help you along the way, as you put together the "local learning hotspot" most suitable for your own teaching/learning community. Here are 2 ways to install IIAB:
+Please see [FAQ.IIAB.IO](https://wiki.iiab.io/go/FAQ) which has 50+ questions and answers to help you along the way (e.g. [“Is a quick installation possible?”](https://wiki.iiab.io/go/FAQ#Is_a_quick_installation_possible%3F)) as you put together the “local learning hotspot” most suitable for your own teaching/learning community. Here are 2 ways to install IIAB:
- Our [1-line installer](https://download.iiab.io/) gets you the very latest, typically within about an hour, on [different Linux distributions](https://github.com/iiab/iiab/wiki/IIAB-Platforms#operating-systems).
-- [Prefab disk images](https://github.com/iiab/iiab/wiki/Raspberry-Pi-Images:-Summary#iiab-images-for-raspberry-pi) ([.img files](https://archive.org/search.php?query=iiab%20.img&sort=-publicdate)) are sometimes a few months out of date, but can be flashed directly onto a microSD card, for insertion into Raspberry Pi.
+- [Prefab disk images](https://github.com/iiab/iiab/wiki/Raspberry-Pi-Images-~-Summary#iiab-images-for-raspberry-pi) ([.img files](https://archive.org/search.php?query=iiab%20.img&sort=-publicdate)) are sometimes a few months out of date, but can be flashed directly onto a microSD card, for insertion into Raspberry Pi.
Our [HOW-TO videos](https://www.youtube.com/channel/UC0cBGCxr_WPBPa3IqPVEe3g) can be very helpful and the [Installation](https://github.com/iiab/iiab/wiki/IIAB-Installation) wiki page has more intricate details e.g. if you're trying to install Internet-in-a-Box (IIAB) onto a [another Linux](https://github.com/iiab/iiab/wiki/IIAB-Platforms) that has not yet been tried.
@@ -29,22 +29,22 @@ See our [Tech Docs Wiki](https://github.com/iiab/iiab/wiki) for more about the u
After you've installed the software, you should [add content](https://github.com/iiab/iiab/wiki/IIAB-Installation#add-content), which can of course take time when downloading multi-gigabyte Content Packs!
-Finally, you can [customize your Internet-in-a-Box home page](https://wiki.iiab.io/go/FAQ#How_do_I_customize_my_Internet-in-a-Box_home_page.3F) (typically http://box or http://box.lan) using our **drag-and-drop** Admin Console (http://box.lan/admin) — to arrange Content Packs and IIAB Apps (services) for your local community's needs.
+Finally, you can [customize your Internet-in-a-Box home page](https://wiki.iiab.io/go/FAQ#How_do_I_customize_my_Internet-in-a-Box_home_page%3F) (typically http://box or http://box.lan) using our **drag-and-drop** Admin Console (http://box.lan/admin) — to arrange Content Packs and IIAB Apps (services) for your local community's needs.
## Community
Global community updates and videos are regularly posted to: **[@internet_in_box](https://twitter.com/internet_in_box)**
-_Internet-in-a-Box (IIAB) greatly welcomes contributions from educators, librarians and [IT/UX/QA people](https://github.com/iiab/iiab/wiki/Technical-Contributors-Guide) of all kinds!_
+_Internet-in-a-Box (IIAB) greatly welcomes contributions from educators, librarians and [IT/UX/QA people](https://github.com/iiab/iiab/wiki/Contributors-Guide-(EN)) ([versión en español](https://github.com/iiab/iiab/wiki/Gu%C3%ADa-para-Contribuidores-(ES))) of all kinds!_
-If you would like to volunteer, please [make contact](https://internet-in-a-box.org/contributing.html) after looking over "[How can I help?](https://wiki.iiab.io/go/FAQ#How_can_I_help.3F)" at: [FAQ.IIAB.IO](https://wiki.iiab.io/go/FAQ)
+If you would like to volunteer, please [make contact](https://internet-in-a-box.org/contributing.html) after looking over [“How can I help?”](https://wiki.iiab.io/go/FAQ#How_can_I_help%3F) at: [FAQ.IIAB.IO](https://wiki.iiab.io/go/FAQ)
-To learn more about our open community architecture for "offline" learning, check out "[What technical documentation exists?](https://wiki.iiab.io/go/FAQ#What_technical_documentation_exists.3F)"
-FYI we use [Ansible](https://wiki.iiab.io/go/FAQ#What_is_Ansible_and_what_version_should_I_use.3F) to install, deploy, configure and manage the various software components.
+To learn more about our open community architecture for “offline” learning, check out [“What technical documentation exists?”](https://wiki.iiab.io/go/FAQ#What_technical_documentation_exists%3F)
+FYI we use [Ansible](https://wiki.iiab.io/go/FAQ#What_is_Ansible_and_what_version_should_I_use%3F) to install, deploy, configure and manage the various software components.
-*Thank you for helping us enable offline access to the Internet's free/open knowledge jewels, as well as "Sneakernet-of-Alexandria" distribution of local/indigenous content, when mass media channels do not serve grassroots voices.*
+*Thank you for helping us enable offline access to the Internet's free/open knowledge jewels, as well as “Sneakernet-of-Alexandria” distribution of local/indigenous content, when mass media channels do not serve grassroots voices.*
## Versions
diff --git a/ansible.cfg b/ansible.cfg
index 4030a931e..deb5328ed 100644
--- a/ansible.cfg
+++ b/ansible.cfg
@@ -5,4 +5,4 @@
# Disallowed by Ansible 2.11+ -- see https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.7.html#using-a-loop-on-a-package-module-via-squash-actions
#squash_actions = apk, apt, dnf, homebrew, openbsd_pkg, pacman, pkgng, yum, zypper, package
[defaults]
-interpreter_python=/usr/bin/python3
+interpreter_python=/usr/local/ansible/bin/python3
diff --git a/iiab-install b/iiab-install
index 532cbf81d..45e637c2a 100755
--- a/iiab-install
+++ b/iiab-install
@@ -11,7 +11,7 @@ CWD=`pwd`
OS=`grep ^ID= /etc/os-release | cut -d= -f2`
OS=${OS//\"/} # Remove all '"'
MIN_RPI_KERN=5.4.0 # Do not use 'rpi-update' unless absolutely necessary: https://github.com/iiab/iiab/issues/1993
-MIN_ANSIBLE_VER=2.11.12 # 2022-11-09: Raspberry Pi 3 (and 3 B+ etc?) apparently install (and require?) ansible-core 2.11 for now -- @deldesir can explain more on PR #3419. Historical: Ansible 2.8.3 and 2.8.6 had serious bugs, preventing their use with IIAB.
+MIN_ANSIBLE_VER=2.16.14 # 2024-11-08: ansible-core 2.15 EOL is November 2024 per https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix 2022-11-09: Raspberry Pi 3 (and 3 B+ etc?) apparently install (and require?) ansible-core 2.11 for now -- @deldesir can explain more on PR #3419. Historical: Ansible 2.8.3 and 2.8.6 had serious bugs, preventing their use with IIAB.
REINSTALL=false
DEBUG=false
diff --git a/iiab-network b/iiab-network
index 5dc831b8e..c888c27bf 100755
--- a/iiab-network
+++ b/iiab-network
@@ -42,7 +42,7 @@ fi
echo "Ansible will now run iiab-network.yml -- log file is iiab-network.log"
Start=`date`
ansible -m setup -i ansible_hosts localhost --connection=local | grep python
-ansible-playbook -i ansible_hosts iiab-network.yml --connection=local
+ansible-playbook -i ansible_hosts iiab-network.yml --extra-vars "{\"skip_role_on_error\":false}" --connection=local
End=`date`
diff --git a/roles/0-DEPRECATED-ROLES/httpd/defaults/main.yml b/roles/0-DEPRECATED-ROLES/httpd/defaults/main.yml
index f728ffca8..a28c2da61 100644
--- a/roles/0-DEPRECATED-ROLES/httpd/defaults/main.yml
+++ b/roles/0-DEPRECATED-ROLES/httpd/defaults/main.yml
@@ -8,7 +8,7 @@
# apache_interface: 127.0.0.1
# Make this False to disable http://box/common/services/power_off.php button:
-# apache_allow_sudo: True
+# allow_www_data_poweroff: False
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
diff --git a/roles/openvpn/defaults/main.yml b/roles/0-DEPRECATED-ROLES/openvpn/defaults/main.yml
similarity index 62%
rename from roles/openvpn/defaults/main.yml
rename to roles/0-DEPRECATED-ROLES/openvpn/defaults/main.yml
index adc23ec2b..136e01f5d 100644
--- a/roles/openvpn/defaults/main.yml
+++ b/roles/0-DEPRECATED-ROLES/openvpn/defaults/main.yml
@@ -1,13 +1,17 @@
+# SECURITY WARNING: https://wiki.iiab.io/go/Security
+
# openvpn_install: True
# openvpn_enabled: False
-# For /etc/iiab/openvpn_handle
+# Empty string on purpose since ~2016, for /etc/iiab/uuid
+# SEE https://github.com/iiab/iiab/blob/master/roles/openvpn/tasks/main.yml#L5-L20
# openvpn_handle: ""
# cron seems necessary on CentOS:
# openvpn_cron_enabled: False
# openvpn_server: xscenet.net
+# openvpn_server_real_ip: 3.89.148.185
# openvpn_server_virtual_ip: 10.8.0.1
# openvpn_server_port: 1194
diff --git a/roles/openvpn/tasks/enable-or-disable.yml b/roles/0-DEPRECATED-ROLES/openvpn/tasks/enable-or-disable.yml
similarity index 100%
rename from roles/openvpn/tasks/enable-or-disable.yml
rename to roles/0-DEPRECATED-ROLES/openvpn/tasks/enable-or-disable.yml
diff --git a/roles/openvpn/tasks/install.yml b/roles/0-DEPRECATED-ROLES/openvpn/tasks/install.yml
similarity index 92%
rename from roles/openvpn/tasks/install.yml
rename to roles/0-DEPRECATED-ROLES/openvpn/tasks/install.yml
index cbe2e36af..53f5dc7f2 100644
--- a/roles/openvpn/tasks/install.yml
+++ b/roles/0-DEPRECATED-ROLES/openvpn/tasks/install.yml
@@ -1,3 +1,8 @@
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: "Install packages: ncat, nmap, openvpn, sudo"
package:
name:
@@ -100,6 +105,17 @@
# RECORD OpenVPN AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'openvpn_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: openvpn
+ option: openvpn_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'openvpn_installed: True'"
set_fact:
openvpn_installed: True
diff --git a/roles/openvpn/tasks/main.yml b/roles/0-DEPRECATED-ROLES/openvpn/tasks/main.yml
similarity index 100%
rename from roles/openvpn/tasks/main.yml
rename to roles/0-DEPRECATED-ROLES/openvpn/tasks/main.yml
diff --git a/roles/openvpn/templates/15-openvpn.unused b/roles/0-DEPRECATED-ROLES/openvpn/templates/15-openvpn.unused
similarity index 100%
rename from roles/openvpn/templates/15-openvpn.unused
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/15-openvpn.unused
diff --git a/roles/openvpn/templates/announce b/roles/0-DEPRECATED-ROLES/openvpn/templates/announce
similarity index 100%
rename from roles/openvpn/templates/announce
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/announce
diff --git a/roles/openvpn/templates/announcer b/roles/0-DEPRECATED-ROLES/openvpn/templates/announcer
similarity index 100%
rename from roles/openvpn/templates/announcer
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/announcer
diff --git a/roles/openvpn/templates/ca.crt b/roles/0-DEPRECATED-ROLES/openvpn/templates/ca.crt
similarity index 100%
rename from roles/openvpn/templates/ca.crt
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/ca.crt
diff --git a/roles/openvpn/templates/client1.crt b/roles/0-DEPRECATED-ROLES/openvpn/templates/client1.crt
similarity index 100%
rename from roles/openvpn/templates/client1.crt
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/client1.crt
diff --git a/roles/openvpn/templates/client1.key b/roles/0-DEPRECATED-ROLES/openvpn/templates/client1.key
similarity index 100%
rename from roles/openvpn/templates/client1.key
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/client1.key
diff --git a/roles/openvpn/templates/iiab-remote-off b/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-remote-off
similarity index 100%
rename from roles/openvpn/templates/iiab-remote-off
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-remote-off
diff --git a/roles/openvpn/templates/iiab-remote-on.j2 b/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-remote-on.j2
similarity index 100%
rename from roles/openvpn/templates/iiab-remote-on.j2
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-remote-on.j2
diff --git a/roles/openvpn/templates/iiab-support b/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support
similarity index 98%
rename from roles/openvpn/templates/iiab-support
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support
index 4ba4d70a3..1d88a66b4 100755
--- a/roles/openvpn/templates/iiab-support
+++ b/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support
@@ -10,11 +10,11 @@ DEBUG=false # Using /usr/bin/true or /usr/bin/false
PLAYBOOK="install-support.yml"
INVENTORY="ansible_hosts"
-# 2021-08-18: bash scripts using default_vars.yml &/or local_vars.yml
+# 2023-02-25: bash scripts using default_vars.yml &/or local_vars.yml
# https://github.com/iiab/iiab-factory/blob/master/iiab
# https://github.com/iiab/iiab/blob/master/roles/firmware/templates/iiab-check-firmware#L10-14
# https://github.com/iiab/iiab/blob/master/roles/network/templates/gateway/iiab-gen-iptables#L48-L52
-# https://github.com/iiab/maps/blob/master/osm-source/pages/viewer/scripts/iiab-install-map-region#L25-L34
+# https://github.com/iiab/maps/blob/master/osm-source/pages/viewer/scripts/iiab-install-map-region#L23-L39
# https://github.com/iiab/iiab/blob/master/roles/openvpn/templates/iiab-support READS AND WRITES, INCL NON-BOOLEAN
# PARSE local_vars.yml JUST AS Ansible & /etc/openvpn/scripts/announcer DO:
diff --git a/roles/openvpn/templates/iiab-support.older b/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support.older
similarity index 100%
rename from roles/openvpn/templates/iiab-support.older
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support.older
diff --git a/roles/openvpn/templates/openvpn_handle.j2.unused b/roles/0-DEPRECATED-ROLES/openvpn/templates/openvpn_handle.j2.unused
similarity index 100%
rename from roles/openvpn/templates/openvpn_handle.j2.unused
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/openvpn_handle.j2.unused
diff --git a/roles/openvpn/templates/silence b/roles/0-DEPRECATED-ROLES/openvpn/templates/silence
similarity index 100%
rename from roles/openvpn/templates/silence
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/silence
diff --git a/roles/openvpn/templates/xscenet.conf.j2 b/roles/0-DEPRECATED-ROLES/openvpn/templates/xscenet.conf.j2
similarity index 100%
rename from roles/openvpn/templates/xscenet.conf.j2
rename to roles/0-DEPRECATED-ROLES/openvpn/templates/xscenet.conf.j2
diff --git a/roles/0-init/tasks/create_iiab_ini.yml b/roles/0-init/tasks/create_iiab_ini.yml
index 239ce570d..75b2b338f 100644
--- a/roles/0-init/tasks/create_iiab_ini.yml
+++ b/roles/0-init/tasks/create_iiab_ini.yml
@@ -1,13 +1,26 @@
-# workaround for fact that auto create does not work on iiab_ini_file (/etc/iiab/iiab.ini)
+- name: Record disk_used_a_priori (permanently, into {{ iiab_ini_file }} below) to later estimate iiab_software_disk_usage
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+# workaround for fact that auto create does not work on iiab_ini_file
- name: Create {{ iiab_ini_file }}
file:
- path: "{{ iiab_ini_file }}"
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
state: touch
-- name: Add 'location' variable values to {{ iiab_ini_file }}
+- name: Run command 'dpkg --print-architecture' to identify OS architecture (CPU arch as revealed by ansible_architecture ~= ansible_machine is NOT enough!)
+ command: dpkg --print-architecture
+ register: dpkg_arch
+
+- name: Run command 'dpkg --print-foreign-architectures' (secondary OS arch, if available)
+ command: dpkg --print-foreign-architectures
+ register: dpkg_foreign_arch
+
+
+- name: Add 'summary' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}"
- section: location
+ section: summary
option: "{{ item.option }}"
value: "{{ item.value | string }}"
with_items:
@@ -15,18 +28,30 @@
value: "{{ iiab_base }}"
- option: iiab_dir
value: "{{ iiab_dir }}"
+ - option: disk_used_a_priori
+ value: "{{ df1.stdout }}"
-- name: Add 'version' variable values to {{ iiab_ini_file }}
+- name: Add 'initial' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}"
- section: version
+ section: initial
option: "{{ item.option }}"
value: "{{ item.value | string }}"
with_items:
+ - option: os_ver
+ value: "{{ os_ver }}"
- option: distribution
- value: "{{ ansible_distribution }}"
+ value: "{{ ansible_facts['distribution'] }}"
- option: arch
value: "{{ ansible_architecture }}"
+ - option: dpkg_arch
+ value: "{{ dpkg_arch.stdout }}"
+ - option: dpkg_foreign_arch
+ value: "{{ dpkg_foreign_arch.stdout }}"
+ - option: rpi_model
+ value: "{{ rpi_model }}"
+ - option: devicetree_model
+ value: "{{ devicetree_model }}"
- option: iiab_base_ver
value: "{{ iiab_base_ver }}"
- option: iiab_remote_url
@@ -39,7 +64,3 @@
value: "{{ ansible_local.local_facts.iiab_recent_tag }}"
- option: install_date
value: "{{ ansible_date_time.iso8601 }}"
- - option: rpi_model
- value: "{{ rpi_model }}"
- - option: devicetree_model
- value: "{{ devicetree_model }}"
diff --git a/roles/0-init/tasks/main.yml b/roles/0-init/tasks/main.yml
index 4c02c6ca5..8eb1668eb 100644
--- a/roles/0-init/tasks/main.yml
+++ b/roles/0-init/tasks/main.yml
@@ -34,14 +34,23 @@
# Copies the latest/known version of iiab-diagnostics into /usr/bin (so it can
# be run even if local source tree /opt/iiab/iiab is deleted to conserve disk).
-- name: Copy iiab-summary & iiab-diagnostics from /opt/iiab/iiab/scripts/ to /usr/bin/
+- name: Copy iiab-update & iiab-summary & iiab-diagnostics & iiab-root-login from /opt/iiab/iiab/scripts/ to /usr/bin/
copy:
src: "{{ iiab_dir }}/scripts/{{ item }}"
dest: /usr/bin/
mode: '0755'
with_items:
+ - iiab-update
- iiab-summary
- iiab-diagnostics
+ - iiab-root-login
+
+- name: Symlink /usr/bin/iiab-upgrade -> /usr/bin/iiab-update
+ file:
+ src: /usr/bin/iiab-update
+ path: /usr/bin/iiab-upgrade
+ state: link
+ #force: yes
- name: Create globally-writable directory /etc/iiab/diag (0777) so non-root users can run 'iiab-diagnostics'
file:
diff --git a/roles/0-init/tasks/validate_vars.yml b/roles/0-init/tasks/validate_vars.yml
index f5277d2d9..dee75addd 100644
--- a/roles/0-init/tasks/validate_vars.yml
+++ b/roles/0-init/tasks/validate_vars.yml
@@ -64,19 +64,19 @@
# 2020-11-04: Fix validation of 5 [now 4] core dependencies, for ./runrole etc
-- name: Set vars_checklist for 44 + 44 + 40 vars ("XYZ_install" + "XYZ_enabled" + "XYZ_installed") to be checked
+- name: Set vars_checklist for 45 + 45 + 40 vars ("XYZ_install" + "XYZ_enabled" + "XYZ_installed") to be checked
set_fact:
vars_checklist:
- hostapd
- dnsmasq
- bluetooth
- sshd
- - openvpn
+ #- openvpn # Deprecated
+ - tailscale
- remoteit
- admin_console
#- nginx # MANDATORY
#- apache # Unmaintained - former dependency
- #- mysql # MANDATORY
- squid
- cups
- samba
@@ -85,6 +85,7 @@
- gitea
- jupyterhub
- lokole
+ - mysql # Dependency - excluded from _installed check below
- mediawiki
- mosquitto
- nodejs # Dependency - excluded from _installed check below
@@ -155,23 +156,41 @@
that: "{{ item }}_install or {{ item }}_installed is undefined"
fail_msg: "DISALLOWED: '{{ item }}_install: False' (e.g. in /etc/iiab/local_vars.yml) WHEN '{{ item }}_installed' is defined (e.g. in /etc/iiab/iiab_state.yml) -- IIAB DOES NOT SUPPORT UNINSTALLS -- please verify those 2 files especially, and other places variables are defined?"
quiet: yes
- when: item != 'nodejs' and item != 'postgresql' and item != 'mongodb' and item != 'yarn' # Exclude auto-installed dependencies
+ when: item != 'mysql' and item != 'postgresql' and item != 'mongodb' and item != 'nodejs' and item != 'yarn' # Exclude auto-installed dependencies
loop: "{{ vars_checklist }}"
+
+- name: Set vars_deprecated_list for 4+ vars ("XYZ_install") to be checked
+ set_fact:
+ vars_deprecated_list:
+ - dhcpd # Deprecated
+ - named # Deprecated
+ - wondershaper # Deprecated
+ - dansguardian # Deprecated
+ #- xo_services # Unmaintained
+ #- activity_server # Unmaintained
+ #- ejabberd_xs # Unmaintained
+ #- idmgr # Unmaintained
+ #- dokuwiki # Unmaintained
+ #- ejabberd # Unmaintained
+ #- elgg # Unmaintained
+
- name: 'DISALLOW "XYZ_install: True" if deprecated'
assert:
that: "{{ item }}_install is undefined or not {{ item }}_install"
fail_msg: "DISALLOWED: '{{ item }}_install: True' (e.g. in /etc/iiab/local_vars.yml)"
quiet: yes
- with_items:
- - dhcpd # Deprecated
- - named # Deprecated
- - wondershaper # Deprecated
- - dansguardian # Deprecated
- #- xo_services # Unmaintained
- #- activity_server # Unmaintained
- #- ejabberd_xs # Unmaintained
- #- idmgr # Unmaintained
- #- dokuwiki # Unmaintained
- #- ejabberd # Unmaintained
- #- elgg # Unmaintained
+ loop: "{{ vars_deprecated_list }}"
+ # 2023-12-04: ansible-core 2.16.1 suddenly no longer allows 'assert' with
+ # 'with_items' below (whereas 'loop' construct above works!) BACKGROUND:
+ #
+ # 'due to mitigation of security issue CVE-2023-5764 in ansible-core 2.16.1,
+ # conditional expressions with embedded template blocks can fail with the
+ # message “Conditional is marked as unsafe, and cannot be evaluated.”'
+ # https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html#playbook
+ #
+ # with_items:
+ # - dhcpd # Deprecated
+ # - named # Deprecated
+ # - wondershaper # Deprecated
+ # - dansguardian # Deprecated
diff --git a/roles/1-prep/README.adoc b/roles/1-prep/README.adoc
index 9d0154d73..997ec812b 100644
--- a/roles/1-prep/README.adoc
+++ b/roles/1-prep/README.adoc
@@ -6,7 +6,7 @@ https://github.com/iiab/iiab/wiki/IIAB-Contributors-Guide#ansible[stage]
hardware, low-level OS quirks, and basic security:
* SSHD
-* OpenVPN if/as needed later for remote support
+* Tailscale if/as needed later for remote support
* https://github.com/iiab/iiab/tree/master/roles/iiab-admin#iiab-admin-readme[iiab-admin]
username and group, to log into Admin Console
* dnsmasq (install now, configure later!)
diff --git a/roles/1-prep/tasks/hardware.yml b/roles/1-prep/tasks/hardware.yml
index 89efd2453..52ef34a97 100644
--- a/roles/1-prep/tasks/hardware.yml
+++ b/roles/1-prep/tasks/hardware.yml
@@ -7,17 +7,18 @@
when: first_run and rpi_model != "none"
-- name: Check if the identifier for Intel's NUC6 built-in WiFi is present
- shell: "lsusb | grep 8087:0a2b | wc | awk '{print $1}'"
- register: usb_NUC6
- ignore_errors: True
-
-- name: Download {{ iiab_download_url }}/iwlwifi-8000C-13.ucode to /lib/firmware for built-in WiFi on NUC6
- get_url:
- url: "{{ iiab_download_url }}/iwlwifi-8000C-13.ucode" # https://download.iiab.io/packages
- dest: /lib/firmware
- timeout: "{{ download_timeout }}"
- when: usb_NUC6.stdout|int > 0
+# 2024-02-09: Code below appears stale for Shanti's #3707 hardware
+#- name: Check if the identifier for Intel's NUC6 built-in WiFi is present
+# shell: "lsusb | grep 8087:0a2b | wc | awk '{print $1}'"
+# register: usb_NUC6
+# ignore_errors: True
+#
+#- name: Download {{ iiab_download_url }}/iwlwifi-8000C-13.ucode to /lib/firmware for built-in WiFi on NUC6
+# get_url:
+# url: "{{ iiab_download_url }}/Old/iwlwifi-8000C-13.ucode" # https://download.iiab.io/packages
+# dest: /lib/firmware
+# timeout: "{{ download_timeout }}"
+# when: usb_NUC6.stdout|int > 0
- name: "Look for any WiFi devices present: ls -la /sys/class/net/*/phy80211 | cut -d/ -f5"
diff --git a/roles/1-prep/tasks/main.yml b/roles/1-prep/tasks/main.yml
index 929dd04da..16cf5976e 100644
--- a/roles/1-prep/tasks/main.yml
+++ b/roles/1-prep/tasks/main.yml
@@ -3,22 +3,22 @@
- name: ...IS BEGINNING ============================================
meta: noop
-- name: SSHD -- required by OpenVPN below -- also run by roles/4-server-options/tasks/main.yml
+- name: SSHD
include_role:
name: sshd
when: sshd_install
-- name: OPENVPN
+- name: TAILSCALE (VPN)
include_role:
- name: openvpn
- when: openvpn_install
+ name: tailscale
+ when: tailscale_install
- name: REMOTE.IT
include_role:
name: remoteit
when: remoteit_install
-- name: IIAB-ADMIN -- includes roles/iiab-admin/tasks/access.yml
+- name: IIAB-ADMIN -- includes {lynx, screen, sudo-prereqs.yml, admin-user.yml, pwd-warnings.yml}
include_role:
name: iiab-admin
#when: iiab_admin_install # Flag might be created in future?
diff --git a/roles/1-prep/templates/iiab-expand-rootfs b/roles/1-prep/templates/iiab-expand-rootfs
index a1fd06772..89d2bd552 100644
--- a/roles/1-prep/templates/iiab-expand-rootfs
+++ b/roles/1-prep/templates/iiab-expand-rootfs
@@ -8,12 +8,21 @@
# Verifies that rootfs is the last partition.
+# RELATED:
+# 1. https://github.com/iiab/iiab-factory/blob/master/box/rpi/min-sd
+# 2. https://github.com/iiab/iiab-factory/blob/master/box/rpi/cp-sd
+# 3. https://github.com/iiab/iiab-factory/blob/master/box/rpi/xz-json-sd
+# OR https://github.com/iiab/iiab-factory/blob/master/box/rpi/exp-sd
+
if [ -f /.expand-rootfs ] || [ -f /.resize-rootfs ]; then
echo "$0: Expanding rootfs partition"
- if [ -x /usr/bin/raspi-config ]; then # Raspberry Pi OS
+ if [ -x /usr/bin/raspi-config ]; then # Raspberry Pi OS -- WARNING: their fdisk-centric approach of course FAILS with "Hybrid MBR" or GPT partition tables, as required by any drive > 2TB :/
# 2022-02-17: Uses do_expand_rootfs() from:
# https://github.com/RPi-Distro/raspi-config/blob/master/raspi-config
+ # 2023-10-05: Official new RPi instructions:
+ # sudo raspi-config nonint do_expand_rootfs
+ # https://www.raspberrypi.com/documentation/computers/configuration.html#expand-filesystem-nonint
raspi-config --expand-rootfs # REQUIRES A REBOOT
rm -f /.expand-rootfs /.resize-rootfs
reboot # In future, we might warn interactive users that a reboot is coming?
@@ -32,7 +41,7 @@ if [ -f /.expand-rootfs ] || [ -f /.resize-rootfs ]; then
fi
# Expand partition
- growpart $ROOT_DEV $ROOT_PART_NUM || true # raspi-config instead uses fdisk. WARNING: growpart RC 2 is more severe than RC 1, and should possibly be handled separately in future?
+ growpart $ROOT_DEV $ROOT_PART_NUM || true # raspi-config instead uses fdisk (assuming MBR). They really should transition to gdisk, as required by any drive > 2TB. WARNING: growpart RC 2 is more severe than RC 1, and should possibly be handled separately in future?
rc=$? # Make Return Code visible, for 'bash -x'
resize2fs $ROOT_PART
rc=$? # Make RC visible (as above)
diff --git a/roles/2-common/tasks/packages.yml b/roles/2-common/tasks/packages.yml
index 0b33dd637..681d8b83f 100644
--- a/roles/2-common/tasks/packages.yml
+++ b/roles/2-common/tasks/packages.yml
@@ -1,6 +1,6 @@
# 2022-03-16: 'apt show | grep Size' revealed download sizes, on 64-bit RasPiOS with desktop.
-- name: "Install 17 common packages: acpid, bzip2, cron, curl, gawk, htop, i2c-tools, logrotate, plocate, pandoc, pastebinit, rsync, sqlite3, tar, unzip, usbutils, wget"
+- name: "Install 19 common packages: acpid, bzip2, cron, curl, gawk, gpg, htop, i2c-tools, logrotate, lshw, pandoc, pastebinit, plocate, rsync, sqlite3, tar, unzip, usbutils, wget"
package:
name:
- acpid # 55kB download: Daemon for ACPI (power mgmt) events
@@ -11,23 +11,24 @@
#- exfat-fuse # 28kB download: 2021-07-27: Should no longer be nec with 5.4+ kernels, so let's try commenting it out
#- exfat-utils # 41kB download: Ditto! See also 'ntfs-3g' below
- gawk # 533kB download
+ - gpg # 884kB download: Debian 12+ (especially!) require this for apt installs of gitea, kolibri, mongodb, yarn
- htop # 109kB download: RasPiOS installs this regardless
- - i2c-tools # 78kB download: RasPiOS installs this regardless -- Low-level bus/chip/register/EEPROM tools e.g. for RTC
+ - i2c-tools # 78kB download: Low-level bus/chip/register/EEPROM tools e.g. for RTC
- logrotate # 67kB download: RasPiOS installs this regardless
+ - lshw # 257kB download: For 'lshw -C network' in iiab-diagnostics
#- lynx # 505kB download: Installed by 1-prep's roles/iiab-admin/tasks/main.yml
#- make # 376kB download: 2021-07-27: Currently used by roles/pbx and no other roles
- #- mlocate # 92kB download
- - plocate # 97kB download: Faster & smaller than locate & mlocate
#- ntfs-3g # 379kB download: RasPiOS installs this regardless -- 2021-07-31: But this should no longer be nec with 5.4+ kernels, similar to exfat packages above -- however, see also this symlink warning: https://superuser.com/questions/1050544/mount-with-kernel-ntfs-and-not-ntfs-3g -- and upcoming kernel 5.15 improvements: https://www.phoronix.com/scan.php?page=news_item&px=New-NTFS-Likely-For-Linux-5.15
#- openssh-server # 318kB download: RasPiOS installs this regardless -- this is also installed by 1-prep's roles/sshd/tasks/main.yml to cover all OS's
- pandoc # 19kB download: For /usr/bin/iiab-refresh-wiki-docs
- pastebinit # 47kB download: For /usr/bin/iiab-diagnostics
- #- python3-pip # 337kB download: RasPiOS installs this regardless -- 2021-07-29: And already installed by /opt/iiab/iiab/scripts/ansible -- this auto-installs 'python3-setuptools' and 'python3' etc
- #- python3-venv # 1188kB download: RasPiOS installs this regardless -- 2021-07-30: For Ansible module 'pip' used in roles like {calibre-web, jupyterhub, lokole} -- whereas roles/kalite uses (virtual) package 'virtualenv' for Python 2 -- all these 3+1 IIAB roles install 'python3-venv' for themselves. FYI: Debian 11 auto-installs 'python3-venv' when you install 'python3' -- whereas Ubuntu (e.g. 20.04 & 21.10) and RasPiOS 10 did not.
+ #- mlocate # 92kB download
+ - plocate # 97kB download: Faster & smaller than locate & mlocate
+ #- python3-pip # 337kB download: 2023-03-22: Used to be installed by /opt/iiab/iiab/scripts/ansible -- which would auto-install 'python3-setuptools' and 'python3' etc
+ #- python3-venv # 1188kB download: 2023-03-22: Already installed by /opt/iiab/iiab/scripts/ansible -- used by roles like {calibre-web, jupyterhub, lokole} -- whereas roles/kalite uses (virtual) package 'virtualenv' for Python 2 -- all these 3+1 IIAB roles install 'python3-venv' for themselves. FYI: Debian 11 no longer auto-installs 'python3-venv' when you install 'python3'
- rsync # 351kB download: RasPiOS installs this regardless
#- screen # 551kB download: Installed by 1-prep's roles/iiab-admin/tasks/main.yml
- sqlite3 # 1054kB download
- #- sudo # 991kB download: RasPiOS installs this regardless -- (2) Can also be installed by roles/1-prep's roles/openvpn/tasks/install.yml, (3) Is definitely installed by 1-prep's roles/iiab-admin/tasks/sudo-prereqs.yml
- tar # 799kB download: RasPiOS installs this regardless
- unzip # 151kB download: RasPiOS installs this regardless
#- usbmount # 18kB download: Moved to roles/usb_lib/tasks/install.yml
diff --git a/roles/3-base-server/README.rst b/roles/3-base-server/README.rst
index e458d7be0..1f22db3a2 100644
--- a/roles/3-base-server/README.rst
+++ b/roles/3-base-server/README.rst
@@ -1,10 +1,21 @@
+.. |ss| raw:: html
+
+
+
+.. |se| raw:: html
+
+
+
+.. |nbsp| unicode:: 0xA0
+ :trim:
+
====================
3-base-server README
====================
This 3rd `stage `_ installs base server infra that `Internet-in-a-Box (IIAB) `_ requires, including:
-- `MySQL `_ (database underlying many/most user-facing apps). This IIAB role also installs apt package:
+- |ss| `MySQL `_ (database underlying many/most user-facing apps). |se| |nbsp| *As of 2023-11-05, MySQL / MariaDB is NO LONGER INSTALLED by 3-base-server — instead it's installed on-demand — as a dependency of Matomo, MediaWiki, Nextcloud, PBX (for FreePBX), WordPress &/or Admin Console.* This IIAB role (roles/mysql) also installs apt package:
- **php{{ php_version }}-mysql** — which forcibly installs **php{{ php_version }}-common**
- `NGINX `_ web server (with Apache in some lingering cases). This IIAB role also installs apt package:
- **php{{ php_version }}-fpm** — which forcibly installs **php{{ php_version }}-cli**, **php{{ php_version }}-common** and **libsodium23**
diff --git a/roles/3-base-server/tasks/main.yml b/roles/3-base-server/tasks/main.yml
index 5e2e7355d..efe1c93e2 100644
--- a/roles/3-base-server/tasks/main.yml
+++ b/roles/3-base-server/tasks/main.yml
@@ -3,10 +3,13 @@
- name: ...IS BEGINNING =====================================
meta: noop
-- name: MYSQL + CORE PHP
- include_role:
- name: mysql
- #when: mysql_install
+# 2023-11-05: MySQL (actually MariaDB) had been mandatory, installed on every
+# IIAB by 3-base-server. Now installed on demand -- as a dependency of Matomo,
+# MediaWiki, Nextcloud, PBX (for FreePBX), WordPress &/or Admin Console.
+# - name: MYSQL + CORE PHP
+# include_role:
+# name: mysql
+# #when: mysql_install
# 2021-05-21: Apache role 'httpd' is installed as nec by any of these 6 roles:
#
diff --git a/roles/4-server-options/README.rst b/roles/4-server-options/README.rst
index 6355f85e7..11458d97e 100644
--- a/roles/4-server-options/README.rst
+++ b/roles/4-server-options/README.rst
@@ -2,7 +2,7 @@
4-server-options README
=======================
-Whereas 3-base-server installs critical packages needed by all, this 4th `stage `_ installs a broad array of *options* — depending on which server apps will be installed in later stages — as specified in `/etc/iiab/local_vars.yml `_
+Whereas 3-base-server installs critical packages needed by all, this 4th `stage `_ installs a broad array of *options* — depending on which server apps will be installed in later stages — as specified in `/etc/iiab/local_vars.yml `_
This includes more networking fundamentals, that may further be configured later on.
@@ -11,7 +11,7 @@ Specifically, these might be installed:
- Python libraries
- SSH daemon
- Bluetooth for Raspberry Pi
-- Instant-sharing of `USB stick content `_
+- Instant-sharing of `USB stick content `_
- CUPS Printing
- Samba for Windows filesystems
- `www_options `_
diff --git a/roles/4-server-options/tasks/main.yml b/roles/4-server-options/tasks/main.yml
index 9bed4e5e8..583cb763d 100644
--- a/roles/4-server-options/tasks/main.yml
+++ b/roles/4-server-options/tasks/main.yml
@@ -19,11 +19,6 @@
#when: pylibs_installed is undefined
#when: pylibs_install # Flag might be created in future?
-- name: SSHD -- also run by roles/1-prep/tasks/main.yml as required by OpenVPN
- include_role:
- name: sshd
- when: sshd_install
-
- name: Install Bluetooth - only on Raspberry Pi
include_role:
name: bluetooth
diff --git a/roles/6-generic-apps/tasks/main.yml b/roles/6-generic-apps/tasks/main.yml
index 648991a4f..f43e878f3 100644
--- a/roles/6-generic-apps/tasks/main.yml
+++ b/roles/6-generic-apps/tasks/main.yml
@@ -29,7 +29,7 @@
- name: JUPYTERHUB
include_role:
name: jupyterhub
- when: jupyterhub_install and ansible_machine is search("64") # 2022-11-10: Avoid installing on 32-bit, until RasPiOS fixes Rust (PR #3421)
+ when: jupyterhub_install
# UNMAINTAINED
- name: LOKOLE
diff --git a/roles/7-edu-apps/tasks/main.yml b/roles/7-edu-apps/tasks/main.yml
index 8f223b1fd..69d1b0788 100644
--- a/roles/7-edu-apps/tasks/main.yml
+++ b/roles/7-edu-apps/tasks/main.yml
@@ -6,12 +6,13 @@
- name: KALITE
include_role:
name: kalite
- when: kalite_install
+ when: kalite_install and (is_ubuntu_2204 or is_ubuntu_2310 or is_debian_12) # Also covers is_linuxmint_21 and is_raspbian_12
- name: KOLIBRI
include_role:
name: kolibri
when: kolibri_install
+ #when: kolibri_install and python_version is version('3.12', '<') # Debian 13 still uses Python 3.11 (for now!) so really this just avoids Ubuntu 24.04 and 24.10 pre-releases during initial iiab-install. CLARIF: This is all TEMPORARY until learningequality/kolibri#11316 brings Python 3.12 support to Kolibri 0.17 pre-releases (expected very soon).
- name: KIWIX
include_role:
@@ -40,10 +41,23 @@
name: pathagar
when: pathagar_install is defined and pathagar_install
+# WARNING: Since March 2023, 32-bit RasPiOS can act as 64-bit on RPi 4 and
+# RPi 400 (unlike RPi 3!) SEE: https://github.com/iiab/iiab/pull/3422 and #3516
+- name: Run command 'dpkg --print-architecture' to identify OS architecture (CPU arch as revealed by ansible_architecture ~= ansible_machine is NO LONGER enough!)
+ command: dpkg --print-architecture
+ register: dpkg_arch
+ when: sugarizer_install
+
+- name: Explain bypassing of Sugarizer install if 32-bit OS
+ fail: # FORCE IT RED THIS ONCE!
+ msg: "BYPASSING SUGARIZER INSTALL ATTEMPT, as Sugarizer Server 1.5.0 requires MongoDB 3.2+ which is NO LONGER SUPPORTED on 32-bit Raspberry Pi OS. 'dpkg --print-architecture' output for your OS: {{ dpkg_arch.stdout }}"
+ when: sugarizer_install and not dpkg_arch.stdout is search("64")
+ ignore_errors: True
+
- name: SUGARIZER
include_role:
name: sugarizer
- when: sugarizer_install
+ when: sugarizer_install and dpkg_arch.stdout is search("64")
- name: Recording STAGE 7 HAS COMPLETED ========================
lineinfile:
diff --git a/roles/8-mgmt-tools/tasks/main.yml b/roles/8-mgmt-tools/tasks/main.yml
index 61ac785ad..c6d497f15 100644
--- a/roles/8-mgmt-tools/tasks/main.yml
+++ b/roles/8-mgmt-tools/tasks/main.yml
@@ -6,7 +6,7 @@
- name: TRANSMISSION
include_role:
name: transmission
- when: transmission_install
+ when: transmission_install and not (is_ubuntu_2404 or is_ubuntu_2410 or is_ubuntu_2504) # Also excludes is_linuxmint_22, for #3756 (whereas Debian 13 works great!)
- name: AWSTATS
include_role:
@@ -23,11 +23,6 @@
name: monit
when: monit_install
-- name: MUNIN
- include_role:
- name: munin
- when: munin_install
-
- name: PHPMYADMIN
include_role:
name: phpmyadmin
diff --git a/roles/9-local-addons/tasks/main.yml b/roles/9-local-addons/tasks/main.yml
index e8ab5d14b..337a74445 100644
--- a/roles/9-local-addons/tasks/main.yml
+++ b/roles/9-local-addons/tasks/main.yml
@@ -14,10 +14,23 @@
name: captiveportal
when: captiveportal_install
+# WARNING: Since March 2023, 32-bit RasPiOS can act as 64-bit on RPi 4 and
+# RPi 400 (unlike RPi 3!) SEE: https://github.com/iiab/iiab/pull/3516
+- name: Run command 'dpkg --print-architecture' to identify OS architecture (CPU arch as revealed by ansible_architecture ~= ansible_machine is NO LONGER enough!)
+ command: dpkg --print-architecture
+ register: dpkg_arch
+ when: internetarchive_install
+
+- name: Explain bypassing of Internet Archive install if 32-bit OS
+ fail: # FORCE IT RED THIS ONCE!
+ msg: "BYPASSING INTERNET ARCHIVE PER https://github.com/iiab/iiab/issues/3641 -- 'dpkg --print-architecture' output for your OS: {{ dpkg_arch.stdout }}"
+ when: internetarchive_install and not dpkg_arch.stdout is search("64")
+ ignore_errors: True
+
- name: INTERNETARCHIVE
include_role:
name: internetarchive
- when: internetarchive_install
+ when: internetarchive_install and dpkg_arch.stdout is search("64")
- name: MINETEST
include_role:
@@ -27,7 +40,7 @@
- name: CALIBRE-WEB
include_role:
name: calibre-web
- when: calibreweb_install and ansible_machine is search("64") # 2022-11-10: Avoid installing on 32-bit, until RasPiOS fixes Rust (PR #3421)
+ when: calibreweb_install
# KEEP NEAR THE VERY END as this installs dependencies from Debian's 'testing' branch!
- name: CALIBRE
@@ -42,6 +55,46 @@
name: pbx
when: pbx_install
+
+- name: '2023-11-05 / TEMPORARY UNTIL ADMIN CONSOLE DECLARES ITS DEPENDENCY: Install MySQL (MariaDB) if admin_console_install (for setup-feedback and record_feedback.php)'
+ set_fact:
+ mysql_install: True
+ mysql_enabled: True
+ when: admin_console_install
+
+- name: '2023-11-05 / TEMPORARY UNTIL ADMIN CONSOLE DECLARES ITS DEPENDENCY: Install MySQL (MariaDB) if admin_console_install (for setup-feedback and record_feedback.php)'
+ include_role:
+ name: mysql
+ when: admin_console_install
+
+- name: '2023-11-05 / TEMPORARY UNTIL ADMIN CONSOLE DECLARES ITS DEPENDENCY: Install MySQL (MariaDB) if admin_console_install (for setup-feedback and record_feedback.php)'
+ fail:
+ msg: "Admin Console install cannot proceed, as MySQL / MariaDB is not installed."
+ when: admin_console_install and mysql_installed is undefined
+
+
+# 2023-11-05: Moved from Stage 8, as it acts on mysql_installed (that might be set just above!)
+- name: MUNIN
+ include_role:
+ name: munin
+ when: munin_install
+
+
+- name: Read 'disk_used_a_priori' from /etc/iiab/iiab.ini
+ set_fact:
+ df1: "{{ lookup('ansible.builtin.ini', 'disk_used_a_priori', section='summary', file=iiab_ini_file) }}"
+
+- name: Record currently used disk space, to compare with original 'disk_used_a_priori'
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add ESTIMATED 'iiab_software_disk_usage = {{ df2.stdout|int - df1|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: summary
+ option: iiab_software_disk_usage
+ value: "{{ df2.stdout|int - df1|int }}"
+
- name: Recording STAGE 9 HAS COMPLETED ====================
lineinfile:
path: "{{ iiab_env_file }}"
diff --git a/roles/awstats/tasks/install.yml b/roles/awstats/tasks/install.yml
index f88e7174c..24a005c74 100644
--- a/roles/awstats/tasks/install.yml
+++ b/roles/awstats/tasks/install.yml
@@ -1,3 +1,8 @@
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: 'Install package: awstats'
package:
name: awstats
@@ -93,6 +98,17 @@
# RECORD AWStats AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'awstats_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: awstats
+ option: awstats_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'awstats_installed: True'"
set_fact:
awstats_installed: True
diff --git a/roles/azuracast/tasks/install.yml b/roles/azuracast/tasks/install.yml
index 8ce9474d2..bd25d96fb 100644
--- a/roles/azuracast/tasks/install.yml
+++ b/roles/azuracast/tasks/install.yml
@@ -25,6 +25,11 @@
# 5. Run './runrole --reinstall azuracast' in /opt/iiab/iiab
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: AzuraCast - Make config directory {{ azuracast_host_dir }}
file:
path: "{{ azuracast_host_dir }}"
@@ -102,6 +107,17 @@
# RECORD AzuraCast AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'azuracast_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: azuracast
+ option: azuracast_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'azuracast_installed: True'"
set_fact:
azuracast_installed: True
diff --git a/roles/calibre-web/README.rst b/roles/calibre-web/README.rst
index 44df76aa4..a29896573 100644
--- a/roles/calibre-web/README.rst
+++ b/roles/calibre-web/README.rst
@@ -13,98 +13,175 @@
Calibre-Web README
==================
-Calibre-Web provides a clean interface for browsing, reading and downloading
-e-books using an existing Calibre database. Teachers can upload e-books,
-adjust e-book metadata, and create custom e-book collections ("bookshelves"):
-https://github.com/janeczku/calibre-web#about
+This Ansible role installs
+`Calibre-Web `_ as a modern
+client-server alternative to Calibre, for your
+`Internet-in-a-Box (IIAB) `_.
-This Ansible role installs Calibre-Web as part of your Internet-in-a-Box (IIAB)
-as a possible alternative to Calibre.
+Calibre-Web provides a clean web interface for students to browse, read and
+download e-books using a
+`Calibre-compatible database `_.
-*WARNING: Calibre-Web depends on Calibre's own* ``/usr/bin/ebook-convert`` *program,
-so we strongly recommend you also install Calibre during your IIAB
-installation!*
+Teachers upload e-books, adjust e-book metadata, and create custom "bookshelf"
+collections — to help students build the best local community library!
-Please note Calibre-Web's Ansible playbook is ``/opt/iiab/iiab/roles/calibre-web``
-whereas its Ansible variables ``calibreweb_*`` do **not** include the dash,
-per Ansible recommendations.
+**NEW AS OF JANUARY 2024:** `IIAB's experimental new version of Calibre-Web `_
+**also lets you add YouTube and Vimeo videos (and local videos, e.g. from
+teachers' phones) to expand your indigenous/local/family learning library!**
+
+.. image:: https://www.yankodesign.com/images/design_news/2019/05/221758/luo_beetle_library_8.jpg
+
+🍒 GURU TIPS 🍒
+
+* Calibre-Web takes advantage of Calibre's own `/usr/bin/ebook-convert
+ `_ program
+ if that's installed — so consider also installing
+ `Calibre `_ during your IIAB
+ installation — *if you tolerate the weighty ~1 GB (of graphical OS libraries)
+ that Calibre mandates!*
+
+* If you choose to also install Calibre (e.g. by running
+ ``sudo apt install calibre``) then you'll get useful e-book
+ importing/organizing tools like
+ `/usr/bin/calibredb `_.
+
+Install It
+----------
+
+Install Calibre-Web by setting these 2 variables in
+`/etc/iiab/local_vars.yml `_::
+
+ calibreweb_install: True
+ calibreweb_enabled: True
+
+Then install IIAB (`download.iiab.io `_). Or if
+IIAB's already installed, run::
+
+ cd /opt/iiab/iiab
+ sudo ./runrole calibre-web
+
+NOTE: Calibre-Web's Ansible role (playbook) in
+`/opt/iiab/iiab/roles `_ is
+``calibre-web`` which contains a hyphen — *whereas its Ansible variables*
+``calibreweb_*`` *do NOT contain a hyphen!*
Using It
--------
-After installation, try out Calibre-Web at http://box/books (or box.lan/books).
+Try Calibre-Web on your own IIAB by browsing to http://box/books (or
+http://box.lan/books).
-Typically students access it without a password (to read and download books)
-whereas teachers add books using an administrative account, as follows::
+*Students* access it without a password (to read and download books).
+
+*Teachers* add and arrange books using an administrative account, by clicking
+**Guest** then logging in with::
Username: Admin
Password: changeme
-If the default configuration is not found, the Calibre-Web server creates a
-new settings file with calibre-web's own default administrative account::
+🍒 GURU TIPS 🍒
- Username: admin
- Password: admin123
+* If Calibre-Web's configuration file (app.db) goes missing, the administrative
+ account will revert to::
-Backend
--------
+ Username: admin
+ Password: admin123
-You can manage the backend Calibre-Web server with these systemd commands::
-
- systemctl enable calibre-web
- systemctl restart calibre-web
- systemctl status calibre-web
- systemctl stop calibre-web
+* If you lose your password, you can change it with the
+ ``-s [username]:[newpassword]`` command-line option:
+ https://github.com/janeczku/calibre-web/wiki/FAQ#what-do-i-do-if-i-lose-my-admin-password
Configuration
-------------
-To configure Calibre-Web, log in as user 'Admin' then click 'Admin' on top.
-Check 'Configuration' options near the bottom of the page.
+To configure Calibre-Web browse to http://box/books then click **Guest** to log
+in as user **Admin** (default passwords above!)
-Critical settings are stored in::
+Then click the leftmost **Admin** button to administer — considering all 3
+**Configuration** buttons further below.
+
+These critical settings are stored in::
/library/calibre-web/config/app.db
-Your e-book metadata is stored in a Calibre-style database::
+Whereas your e-book metadata is stored in a Calibre-style database::
/library/calibre-web/metadata.db
+Videos' metadata is stored in database::
+
+ /library/calibre-web/xklb-metadata.db
+
See also::
/library/calibre-web/metadata_db_prefs_backup.json
-Finally, take note of Calibre-Web's `FAQ `_ and official docs on its `Runtime Configuration Options `_ and `Command Line Interface `_.
+Finally, take note of Calibre-Web's
+`FAQ `_ and official docs on
+its
+`Runtime Configuration Options `_
+and
+`Command Line Interface `_.
+
+Backend
+-------
+
+You can manage the backend Calibre-Web server with systemd commands like::
+
+ systemctl status calibre-web
+ systemctl stop calibre-web
+ systemctl restart calibre-web
+
+Run all commands
+`as root `_.
+
+Errors and warnings can be seen if you run::
+
+ journalctl -u calibre-web
+
+Log verbosity level can be
+`adjusted `_
+within Calibre-Web's **Configuration > Basic Configuration > Logfile
+Configuration**.
+
+Finally, http://box/live/stats (Calibre-Web's **About** page) can be a very
+useful list of ~42 `Calibre-Web dependencies `_
+(mostly Python packages, and the version number of each that's installed).
Back Up Everything
------------------
Please back up the entire folder ``/library/calibre-web`` before upgrading —
-as it contains your Calibre-Web content **and** settings!
+as it contains your Calibre-Web content **and** configuration settings!
Upgrading
---------
-Reinstalling Calibre-Web automatically upgrades to the latest version if your
-Internet-in-a-Box (IIAB) is online.
+Please see our `new/automated upgrade technique (iiab-update) `_
+introduced in July 2024.
-But first: back up your content **and** settings, as explained above.
+But first: back up your content **and** configuration settings, as outlined
+above!
-**Also move your /library/calibre-web/config/app.db AND/OR
-/library/calibre-web/metadata.db out of the way — if you're sure you want to
-fully reset your Calibre-Web settings (to install defaults) AND/OR remove all
-e-book metadata! Then run**::
+**Conversely if you're sure you want to fully reset your Calibre-Web settings,
+and remove all existing e-book/video/media metadata — then move your
+/library/calibre-web/config/app.db, /library/calibre-web/metadata.db and
+/library/calibre-web/xklb-metadata.db out of the way.**
+
+RECAP: Either way, "reinstalling" Calibre-Web automatically installs the latest
+version — so long as your Internet-in-a-Box (IIAB) is online. Most people
+should stick with the new ``iiab-update`` technique above. However if you must
+use the older/manual approach, you would need to run, as root::
cd /opt/iiab/iiab
./runrole --reinstall calibre-web
-Or, if you just want to upgrade Calibre-Web code alone, prior to proceeding
-manually::
+Or, if there's a need to try updating Calibre-Web's code alone::
cd /usr/local/calibre-web-py3
git pull
-This older way *is no longer recommended*::
+Finally, this much older way is *no longer recommended*::
cd /opt/iiab/iiab
./iiab-install --reinstall # OR: ./iiab-configure
@@ -156,5 +233,5 @@ Known Issues
* |ss| Upload of not supported file formats gives no feedback to the user: `janeczku/calibre-web#828 `_ |se| |nbsp| Fixed by `361a124 `_ on 2019-02-27.
-* *Please assist us in reporting serious issues here:*
- https://github.com/janeczku/calibre-web/issues
+* *Please report serious issues here:*
+ https://github.com/iiab/calibre-web/issues
diff --git a/roles/calibre-web/defaults/main.yml b/roles/calibre-web/defaults/main.yml
index 7abab0bd8..3e99725a9 100644
--- a/roles/calibre-web/defaults/main.yml
+++ b/roles/calibre-web/defaults/main.yml
@@ -14,8 +14,10 @@
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
+calibreweb_repo_url: https://github.com/iiab/calibre-web # Or use upstream: https://github.com/janeczku/calibre-web
calibreweb_version: master # WAS: master, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9
+calibreweb_venv_wipe: False # 2023-12-04: NEW default TDD (Test-Driven Dev!)
calibreweb_venv_path: /usr/local/calibre-web-py3
calibreweb_exec_path: "{{ calibreweb_venv_path }}/cps.py"
diff --git a/roles/calibre-web/files/app.db b/roles/calibre-web/files/app.db
index 31a8b716a..3183544da 100644
Binary files a/roles/calibre-web/files/app.db and b/roles/calibre-web/files/app.db differ
diff --git a/roles/calibre-web/tasks/enable-or-disable.yml b/roles/calibre-web/tasks/enable-or-disable.yml
index b196176f9..493703dc7 100644
--- a/roles/calibre-web/tasks/enable-or-disable.yml
+++ b/roles/calibre-web/tasks/enable-or-disable.yml
@@ -23,12 +23,29 @@
dest: "{{ nginx_conf_dir }}/calibre-web-nginx.conf" # /etc/nginx/conf.d
when: calibreweb_enabled
+- name: If enabling with Calibre-Web enhanced for large audio/video "books" too, also append onto calibre-web-nginx.conf AND symlink /library/www/html/calibre-web -> /library/calibre-web (WIP)
+ shell: |
+ if [ -f {{ calibreweb_venv_path }}/scripts/calibre-web-nginx.conf ]; then
+ cat {{ calibreweb_venv_path }}/scripts/calibre-web-nginx.conf >> {{ nginx_conf_dir }}/calibre-web-nginx.conf
+ # 2023-12-05: Not needed as a result of PR iiab/calibre-web#57
+ # ln -sf {{ calibreweb_home }} {{ doc_root }}/calibre-web
+ fi
+ when: calibreweb_enabled
+
+
- name: Disable http://box{{ calibreweb_url1 }} via NGINX, by removing {{ nginx_conf_dir }}/calibre-web-nginx.conf
file:
- path: "{{ nginx_conf_dir }}/calibre-web-nginx.conf" # /etc/nginx/conf.d
+ path: "{{ nginx_conf_dir }}/calibre-web-nginx.conf"
state: absent
when: not calibreweb_enabled
+- name: If disabling, also remove symlink /library/www/html/calibre-web (WIP)
+ file:
+ path: "{{ doc_root }}/calibre-web" # /library/www/html
+ state: absent
+ when: not calibreweb_enabled
+
+
- name: Restart 'nginx' systemd service
systemd:
name: nginx
diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml
index 65a88168c..d293afe23 100644
--- a/roles/calibre-web/tasks/install.yml
+++ b/roles/calibre-web/tasks/install.yml
@@ -1,10 +1,50 @@
-- name: "Install packages: imagemagick, python3-venv"
+# Or try 'iiab-update -f' for a more rapid upgrade of IIAB Calibre-Web:
+#
+# https://wiki.iiab.io/go/FAQ#Can_I_upgrade_IIAB_software%3F
+# https://github.com/iiab/calibre-web/wiki#upgrading
+# https://github.com/iiab/iiab/blob/master/scripts/iiab-update
+# https://github.com/iiab/iiab/tree/master/roles/calibre-web#upgrading
+
+
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
+- name: Stop 'calibre-web' systemd service for safety (RED ERROR CAN BE IGNORED!)
+ systemd:
+ name: calibre-web
+ state: stopped
+ ignore_errors: True # Shows red errors, and continue...
+ #failed_when: False # Hides red errors, and continue...
+
+# Official upstream instructions:
+# apt install python3-pip python3-venv
+# https://github.com/janeczku/calibre-web/wiki/Manual-installation
+- name: "Install package: imagemagick"
package:
name:
- imagemagick
- - python3-venv
+ #- python3-cryptography # Was needed on Raspberry Pi OS (SEE iiab/calibre-web#260, janeczku/calibre-web#3183)
+ #- python3-netifaces
state: present
+# https://github.com/iiab/iiab/pull/3496#issuecomment-1475094542
+#- name: "Install packages: python3-dev, gcc to compile 'netifaces'"
+# package:
+# name:
+# - python3-dev # header files
+# - gcc # compiler
+# state: present
+# when: python_version is version('3.10', '>=')
+
+- name: Does /etc/ImageMagick-6/policy.xml exist?
+ stat:
+ path: /etc/ImageMagick-6/policy.xml
+ register: imagemagick6_policy_xml
+
+# 2024-12-16: Debian 13 uses /etc/ImageMagick-7/policy.xml instead, which doesn't need this lineinfile surgery:
+# https://stackoverflow.com/questions/52998331/imagemagick-security-policy-pdf-blocking-conversion
- name: Allow ImageMagick to read PDFs, per /etc/ImageMagick-6/policy.xml, to create book cover thumbnails
lineinfile:
path: /etc/ImageMagick-6/policy.xml
@@ -12,8 +52,9 @@
backrefs: yes
line: ' '
state: present
+ when: imagemagick6_policy_xml.stat.exists
-- name: "Create 3 Calibre-Web folders to store data and config files: {{ calibreweb_home }}, {{ calibreweb_venv_path }}, {{ calibreweb_config }} (all set to {{ calibreweb_user }}:{{ apache_user }}) (default to 0755)"
+- name: "Create 2 Calibre-Web folders to store data and config files: {{ calibreweb_home }}, {{ calibreweb_config }} (each set to {{ calibreweb_user }}:{{ apache_user }}, default to 0755)"
file:
state: directory
path: "{{ item }}"
@@ -22,40 +63,100 @@
with_items:
- "{{ calibreweb_home }}" # /library/calibre-web
- "{{ calibreweb_config }}" # /library/calibre-web/config
- - "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3
-## TODO: Calibre-web future release might get into pypi https://github.com/janeczku/calibre-web/issues/456
-- name: Clone i.e. download Calibre-Web ({{ calibreweb_version }}) from https://github.com/janeczku/calibre-web.git to {{ calibreweb_venv_path }} (~94 MB initially, ~115+ MB later)
+# FYI since May 2021, Calibre-Web (major releases) can be installed with pip:
+# https://pypi.org/project/calibreweb/
+# https://github.com/janeczku/calibre-web/issues/456
+# https://github.com/janeczku/calibre-web/issues/677
+# https://github.com/janeczku/calibre-web/pull/927
+# https://github.com/janeczku/calibre-web/pull/1459
+
+- name: "Remove previous virtual environment {{ calibreweb_venv_path }} -- if 'calibreweb_venv_wipe: True'"
+ file:
+ path: "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3
+ state: absent
+ when: calibreweb_venv_wipe
+
+- name: Does {{ calibreweb_venv_path }} exist?
+ stat:
+ path: "{{ calibreweb_venv_path }}"
+ register: calibreweb_venv
+
+- name: git clone Calibre-Web ({{ calibreweb_version }}) from {{ calibreweb_repo_url }} to {{ calibreweb_venv_path }} (~122 MB initially, ~191+ or ~203+ MB later) -- if {{ calibreweb_venv_path }} doesns't exist
git:
- repo: https://github.com/janeczku/calibre-web.git
+ repo: "{{ calibreweb_repo_url }}" # e.g. https://github.com/iiab/calibre-web or https://github.com/janeczku/calibre-web
dest: "{{ calibreweb_venv_path }}"
- force: yes
- depth: 1
- version: "{{ calibreweb_version }}" # e.g. master, 0.6.17
+ #force: True # CLAIM: "If true, any modified files in the working repository will be discarded" -- REALITY: even if `force: no`, Ansible destructively reclones (also removing all test branch commits etc!) -- unless a git credential is provided to Ansible?
+ #depth: 1 # 2023-11-04: Full clone for now, to help @deldesir & wider community testing
+ version: "{{ calibreweb_version }}" # e.g. master, 0.6.22
+ when: not calibreweb_venv.stat.exists
-## Ansible Pip Bug: Cannot use 'chdir' with 'env' https://github.com/ansible/ansible/issues/37912 (Patch landed)
-#- name: Download calibre-web dependencies into vendor subdirectory.
-# pip:
-# requirements: "{{ calibreweb_path }}/requirements.txt"
-# chdir: "{{ calibreweb_path }}"
-# extra_args: '--target vendor'
-# ignore_errors: True
-##
-# Implementing this with Ansible command module for now.
-- name: Download Calibre-Web dependencies (using pip) into python3 virtual environment {{ calibreweb_venv_path }}
+- name: cd {{ calibreweb_venv_path }} ; git pull {{ calibreweb_repo_url }} {{ calibreweb_version }} --no-rebase --no-edit -- if {{ calibreweb_venv_path }} exists
+ command: git pull "{{ calibreweb_repo_url }}" "{{ calibreweb_version }}" --no-rebase --no-edit
+ args:
+ chdir: "{{ calibreweb_venv_path }}"
+ when: calibreweb_venv.stat.exists
+
+- debug:
+ msg:
+ - "NEED BETTER/EXPERIMENTAL YouTube SCRAPING? RUN THE NEXT LINE -- for the latest yt-dlp 'nightly' release:"
+ - sudo pipx inject --pip-args='--upgrade --pre' -f library yt-dlp[default]
+
+- name: If Calibre-Web is being enhanced with audio/video "books" too, install/upgrade additional prereqs -- SEE https://github.com/iiab/calibre-web/wiki
+ shell: |
+ if [ -f {{ calibreweb_venv_path }}/scripts/lb-wrapper ]; then
+ apt install ffmpeg pipx -y
+ if lb --version; then
+ if pipx list | grep -q 'xklb'; then
+ pipx uninstall xklb
+ pipx install library
+ else
+ pipx reinstall library
+ fi
+ else
+ pipx install library
+ fi
+ ln -sf /root/.local/bin/lb /usr/local/bin/lb
+ if [ -f /root/.local/share/pipx/venvs/library/bin/yt-dlp ]; then
+ ln -sf /root/.local/share/pipx/venvs/library/bin/yt-dlp /usr/local/bin/yt-dlp
+ elif [ -f /root/.local/pipx/venvs/library/bin/yt-dlp ]; then
+ ln -sf /root/.local/pipx/venvs/library/bin/yt-dlp /usr/local/bin/yt-dlp
+ else
+ echo "ERROR: yt-dlp NOT FOUND"
+ fi
+ # NEED BETTER/EXPERIMENTAL YouTube SCRAPING? UNCOMMENT THE NEXT LINE -- for the latest yt-dlp "nightly" release:
+ # pipx inject --pip-args="--upgrade --pre" -f library yt-dlp[default]
+ #
+ # https://github.com/yt-dlp/yt-dlp-nightly-builds/releases
+ # https://pypi.org/project/yt-dlp/#history
+ cp {{ calibreweb_venv_path }}/scripts/lb-wrapper /usr/local/bin/
+ chmod a+x /usr/local/bin/lb-wrapper
+ fi
+
+- name: Download Calibre-Web dependencies from 'requirements.txt' into python3 virtual environment {{ calibreweb_venv_path }}
pip:
requirements: "{{ calibreweb_venv_path }}/requirements.txt"
virtualenv: "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3
- virtualenv_site_packages: no
+ #virtualenv_site_packages: no
+ #virtualenv_command: python3 -m venv --system-site-packages {{ calibreweb_venv_path }}
virtualenv_command: python3 -m venv {{ calibreweb_venv_path }}
+ extra_args: --prefer-binary # 2023-10-01: Lifesaver when recent wheels (e.g. piwheels.org) are inevitably not yet built! SEE #3560
+
+# 2023-10-11: RasPiOS Bookworm doc for Python with venv (PEP 668 now enforced!)
+# https://www.raspberrypi.com/documentation/computers/os.html#use-python-on-a-raspberry-pi
+# https://www.raspberrypi.com/documentation/computers/os.html#install-python-packages-using-apt
+# https://www.raspberrypi.com/documentation/computers/os.html#install-python-libraries-using-pip
+
# VIRTUALENV EXAMPLE COMMANDS:
+# python3 -m venv /usr/local/calibre-web-py3 (create venv)
# cd /usr/local/calibre-web-py3
-# source bin/activate
-# python3 -m pip list ('pip list' probably sufficient, likewise below)
+# . bin/activate (or 'source bin/activate' -- this prepends '/usr/local/calibre-web-py3/bin' to yr PATH)
+# python3 -m pip list ('pip list' sufficient *IF* path set above!)
# python3 -m pip freeze > /tmp/requirements.txt
# python3 -m pip install -r requirements.txt
# deactivate
-# https://pip.pypa.io/en/latest/user_guide/#requirements-files
+# https://pip.pypa.io/en/stable/user_guide/#requirements-files
+# https://pip.pypa.io/en/latest/reference/requirements-file-format/
- name: Install /etc/systemd/system/calibre-web.service from template
template:
@@ -96,6 +197,17 @@
# RECORD Calibre-Web AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'calibreweb_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: calibre-web
+ option: calibreweb_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'calibreweb_installed: True'"
set_fact:
calibreweb_installed: True
diff --git a/roles/calibre-web/templates/calibre-web-nginx.conf.j2 b/roles/calibre-web/templates/calibre-web-nginx.conf.j2
index d1f2da25b..2ebfe47fe 100644
--- a/roles/calibre-web/templates/calibre-web-nginx.conf.j2
+++ b/roles/calibre-web/templates/calibre-web-nginx.conf.j2
@@ -5,7 +5,7 @@ location {{ calibreweb_url1 }}/ {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
- proxy_set_header X-Script-Name {{ calibreweb_url1 }};
+ proxy_set_header X-Script-Name "{{ calibreweb_url1 }}";
proxy_pass http://127.0.0.1:8083;
}
@@ -14,7 +14,7 @@ location {{ calibreweb_url2 }}/ {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
- proxy_set_header X-Script-Name {{ calibreweb_url2 }};
+ proxy_set_header X-Script-Name "{{ calibreweb_url2 }}";
proxy_pass http://127.0.0.1:8083;
}
@@ -23,6 +23,6 @@ location {{ calibreweb_url3 }}/ {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
- proxy_set_header X-Script-Name {{ calibreweb_url3 }};
+ proxy_set_header X-Script-Name "{{ calibreweb_url3 }}";
proxy_pass http://127.0.0.1:8083;
}
diff --git a/roles/calibre/tasks/install.yml b/roles/calibre/tasks/install.yml
index 6a435c968..82218ada0 100644
--- a/roles/calibre/tasks/install.yml
+++ b/roles/calibre/tasks/install.yml
@@ -1,3 +1,8 @@
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
# 1. APT INSTALL CALIBRE 4.12+ or 5.12+ (calibre, calibredb, calibre-server etc) ON ALL OS'S
- name: "Install OS's latest packages: calibre, calibre-bin"
@@ -79,6 +84,17 @@
# 5. RECORD Calibre AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'calibre_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: calibre
+ option: calibre_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'calibre_installed: True'"
set_fact:
calibre_installed: True
diff --git a/roles/captiveportal/tasks/install.yml b/roles/captiveportal/tasks/install.yml
index ab25d50b6..b76ad39b0 100644
--- a/roles/captiveportal/tasks/install.yml
+++ b/roles/captiveportal/tasks/install.yml
@@ -1,3 +1,8 @@
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: "Install packages: python3-dateutil, python3-jinja2"
package:
name:
@@ -51,6 +56,17 @@
# RECORD Captive Portal AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'captiveportal_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: captiveportal
+ option: captiveportal_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'captiveportal_installed: True'"
set_fact:
captiveportal_installed: True
diff --git a/roles/cups/README.md b/roles/cups/README.md
index 6cf926c88..cd727be5f 100644
--- a/roles/cups/README.md
+++ b/roles/cups/README.md
@@ -8,7 +8,7 @@ This can be useful if a printer is attached to your IIAB — so student/teac
## Using it
-Make sure your IIAB was installed with these 2 lines in [/etc/iiab/local_vars.yml](http://faq.iiab.io/#What_is_local_vars.yml_and_how_do_I_customize_it.3F) :
+Make sure your IIAB was installed with these 2 lines in [/etc/iiab/local_vars.yml](http://faq.iiab.io/#What_is_local_vars.yml_and_how_do_I_customize_it%3F) :
```
cups_install: True
diff --git a/roles/cups/tasks/install.yml b/roles/cups/tasks/install.yml
index 12296cfe5..55209a50b 100644
--- a/roles/cups/tasks/install.yml
+++ b/roles/cups/tasks/install.yml
@@ -2,6 +2,11 @@
# (OR ANY MEMBER OF LINUX GROUP 'lpadmin') AS SET UP BELOW...
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: Install 'cups' package
package:
name: cups
@@ -53,15 +58,30 @@
AuthType Default
Require user @SYSTEM
-- name: "CUPS web administration: Create Linux username 'Admin' with password 'changeme' in Linux group 'lpadmin' (shell: /usr/sbin/nologin, create_home: no)"
+- name: "CUPS web administration: Create Linux username 'Admin' in Linux group 'lpadmin' (shell: /usr/sbin/nologin, create_home: no)"
user:
name: Admin
append: yes # Don't clobber other groups, that other IIAB Apps might need.
groups: lpadmin
- password: "{{ 'changeme' | password_hash('sha512') }}" # Random salt. Presumably runs 5000 rounds of SHA-512 per /etc/login.defs & /etc/pam.d/common-password -- https://docs.ansible.com/ansible/latest/user_guide/playbooks_filters.html#encrypting-and-checksumming-strings-and-passwords
+ #password: "{{ 'changeme' | password_hash('sha512') }}" # Random salt. Presumably runs 5000 rounds of SHA-512 per /etc/login.defs & /etc/pam.d/common-password -- https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_filters.html#hashing-and-encrypting-strings-and-passwords
create_home: no
shell: /usr/sbin/nologin # Debian/Ubuntu norm -- instead of /sbin/nologin, /bin/false
+# 2024-05-01: Above password-setting approach no longer works w/ Ansible 2.17 RC1 (#3727).
+# Ansible STOPS with this error...
+#
+# "[DEPRECATION WARNING]: Encryption using the Python crypt module is deprecated. The Python crypt module is
+# deprecated and will be removed from Python 3.13. Install the passlib library for continued encryption
+# functionality. This feature will be removed in version 2.17. Deprecation warnings can be disabled by
+# setting deprecation_warnings=False in ansible.cfg."
+#
+# ...so we instead use Linux's "chpasswd" command (below!)
+
+- name: Use chpasswd to set Linux username 'Admin' password to 'changeme'
+ command: chpasswd
+ args:
+ stdin: Admin:changeme
+
# - name: Add user '{{ iiab_admin_user }}' to Linux group 'lpadmin' -- for CUPS web administration (or modify default 'SystemGroup lpadmin' in /etc/cups/cups-files.conf -- in coordination with ~14 -> ~15 '@SYSTEM' lines in /etc/cups/cupsd.conf)
# #command: "gpasswd -a {{ iiab_admin_user | quote }} lpadmin"
# #command: "gpasswd -d {{ iiab_admin_user | quote }} lpadmin"
@@ -124,6 +144,17 @@
# RECORD CUPS AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'cups_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: cups
+ option: cups_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'cups_installed: True'"
set_fact:
cups_installed: True
diff --git a/roles/cups/tasks/main.yml b/roles/cups/tasks/main.yml
index 2c9531814..a709ac090 100644
--- a/roles/cups/tasks/main.yml
+++ b/roles/cups/tasks/main.yml
@@ -23,26 +23,33 @@
quiet: yes
-- name: Install CUPS if 'cups_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
- include_tasks: install.yml
- when: cups_installed is undefined
+- block:
+ - name: Install CUPS if 'cups_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
+ include_tasks: install.yml
+ when: cups_installed is undefined
-- include_tasks: enable-or-disable.yml
+ - include_tasks: enable-or-disable.yml
+ - name: Add 'cups' variable values to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: cups
+ option: "{{ item.option }}"
+ value: "{{ item.value | string }}"
+ with_items:
+ - option: name
+ value: CUPS
+ - option: description
+ value: '"CUPS (Common UNIX Printing System) is a modular printing system that allows a computer to act as a print server. A computer running CUPS is a host that can accept print jobs from client computers, process them, and send them to the appropriate printer."'
+ - option: cups_install
+ value: "{{ cups_install }}"
+ - option: cups_enabled
+ value: "{{ cups_enabled }}"
-- name: Add 'cups' variable values to {{ iiab_ini_file }}
- ini_file:
- path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
- section: cups
- option: "{{ item.option }}"
- value: "{{ item.value | string }}"
- with_items:
- - option: name
- value: CUPS
- - option: description
- value: '"CUPS (Common UNIX Printing System) is a modular printing system that allows a computer to act as a print server. A computer running CUPS is a host that can accept print jobs from client computers, process them, and send them to the appropriate printer."'
- - option: cups_install
- value: "{{ cups_install }}"
- - option: cups_enabled
- value: "{{ cups_enabled }}"
+ rescue:
+
+ - name: 'SEE ERROR ABOVE (skip_role_on_error: {{ skip_role_on_error }})'
+ fail:
+ msg: ""
+ when: not skip_role_on_error
diff --git a/roles/firmware/tasks/download.yml b/roles/firmware/tasks/download.yml
index 949ad3583..abda2e6b4 100644
--- a/roles/firmware/tasks/download.yml
+++ b/roles/firmware/tasks/download.yml
@@ -1,23 +1,44 @@
-- name: Back up 4 OS-provided WiFi firmware files (or symlinks) to /lib/firmware/brcm/*.orig
- copy:
- src: /lib/firmware/brcm/{{ item }}
- dest: /lib/firmware/brcm/{{ item }}.orig
+# 2023-02-25: MONITOR FIRMWARE UPDATES in 3 places especially...
+#
+# 1. apt changelog firmware-brcm80211
+# https://github.com/RPi-Distro/firmware-nonfree -> debian/config/brcm80211 (brcm, cypress)
+# https://archive.raspberrypi.org/debian/dists/bullseye/main/binary-arm64/Packages (1.1MB text file, look inside for summary of latest firmware-brcm80211)
+# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/ -> firmware-brcm80211_* e.g.:
+# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20190114-1+rpt11_all.deb from 2021-01-25
+# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20210315-3+rpt4_all.deb from 2021-12-06
+# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20221012-1~bpo11+1+rpt1_all.deb from 2022-11-17
+# 2. apt changelog linux-firmware-raspi
+# https://packages.ubuntu.com/search?keywords=linux-firmware-raspi
+# 3. https://github.com/moodlebox/moodlebox/blob/main/roles/accesspoint/tasks/main.yml
+
+#- name: Back up 4 OS-provided WiFi firmware files (incl symlink contents) to /lib/firmware/cypress/*.orig
+- name: Back up 4 OS-provided WiFi firmware files (replicate any symlinks) to /lib/firmware/cypress/*.orig -- /usr/bin/iiab-check-firmware will later do similar (e.g. as firmware install completes) -- moving 2-or-4 of these to .YYYY-MM-DD-HH:MM:SS ("doubly timestamping" to preserve BOTH last-modif & moving date)
+ # copy:
+ # src: /lib/firmware/cypress/{{ item }}
+ # dest: /lib/firmware/cypress/{{ item }}.orig
+ # #local_follow: False # FAILS TO PRESERVE LINKS (ansible/ansible#74777) e.g. /lib/firmware/cypress/cyfmac43455-sdio.bin -> /etc/alternatives/cyfmac43455-sdio.bin -> ...
+ # 2023-05-01 CLARIF OF BELOW:
+ # 1) Even if 'mv' fails, no matter it'll continue to 'cp' below
+ # 2) 'cp -P' == 'cp --no-dereference' sufficient to replicate these symlinks and files ('cp -d' & 'cp -a' are incrementally stronger, and so probably can't hurt)
+ shell: |
+ mv /lib/firmware/cypress/{{ item }}.orig /lib/firmware/cypress/{{ item }}.orig.$(date +%F-%T)
+ cp -a /lib/firmware/cypress/{{ item }} /lib/firmware/cypress/{{ item }}.orig
with_items:
- - brcmfmac43430-sdio.bin
- - brcmfmac43430-sdio.clm_blob
- - brcmfmac43455-sdio.bin
- - brcmfmac43455-sdio.clm_blob
- ignore_errors: yes
+ - cyfmac43430-sdio.bin
+ - cyfmac43430-sdio.clm_blob
+ - cyfmac43455-sdio.bin
+ - cyfmac43455-sdio.clm_blob
+ #ignore_errors: yes # 2023-02-25: Let's INTENTIONALLY surface any errors, e.g. if any future RasPiOS or Ubuntu-on-Rpi lack some of the above 4 files/links?
- name: Download higher-capacity firmwares (for RPi internal WiFi, per https://github.com/iiab/iiab/issues/823#issuecomment-662285202 and https://github.com/iiab/iiab/issues/2853)
get_url:
url: "{{ iiab_download_url }}/{{ item }}"
- dest: /lib/firmware/brcm/
+ dest: /lib/firmware/cypress/
timeout: "{{ download_timeout }}"
with_items:
- - brcmfmac43455-sdio.bin_2021-11-30_minimal # 19 -- from https://github.com/RPi-Distro/firmware-nonfree/blob/feeeda21e930c2e182484e8e1269b61cca2a8451/debian/config/brcm80211/cypress/cyfmac43455-sdio-minimal.bin
+ - brcmfmac43455-sdio.bin_2021-11-30_minimal # 19 -- SAME AS RASPIOS & UBUNTU'S https://github.com/RPi-Distro/firmware-nonfree/blob/feeeda21e930c2e182484e8e1269b61cca2a8451/debian/config/brcm80211/cypress/cyfmac43455-sdio-minimal.bin
- brcmfmac43455-sdio.bin_2021-10-05_3rd-trial-minimal # 24 -- from https://github.com/iiab/iiab/issues/2853#issuecomment-934293015
- - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi # Works w/ both above -- from https://github.com/RPi-Distro/firmware-nonfree/blob/dc406650e840705957f8403efeacf71d2d7543b3/debian/config/brcm80211/cypress/cyfmac43455-sdio.clm_blob
+ - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi # Works w/ both above -- SAME AS RASPIOS & UBUNTU'S https://github.com/RPi-Distro/firmware-nonfree/blob/dc406650e840705957f8403efeacf71d2d7543b3/debian/config/brcm80211/cypress/cyfmac43455-sdio.clm_blob
- brcmfmac43455-sdio.bin_2015-03-01_7.45.18.0_ub19.10.1 # 32 -- from https://github.com/iiab/iiab/issues/823#issuecomment-662285202
- brcmfmac43455-sdio.clm_blob_2018-02-26_rpi
- brcmfmac43430-sdio.bin_2018-09-11_7.45.98.65 # 30 -- from https://github.com/iiab/iiab/issues/823#issuecomment-662285202
diff --git a/roles/firmware/tasks/install.yml b/roles/firmware/tasks/install.yml
index c0fcfa532..4f323ca72 100644
--- a/roles/firmware/tasks/install.yml
+++ b/roles/firmware/tasks/install.yml
@@ -4,61 +4,69 @@
# Set 2 symlinks for RPi 3 B+ and 4 (43455)
+# COMPARE: update-alternatives --display cyfmac43455-sdio.bin
+# https://github.com/moodlebox/moodlebox/blob/main/roles/accesspoint/tasks/main.yml#L3-L6
-- name: Populate rpi3bplus_rpi4_wifi_firmwares dictionary (lookup table for operator-chosen .bin and .clm_blob files in /lib/firmware/brcm)
+- name: Populate rpi3bplus_rpi4_wifi_firmwares dictionary (lookup table for operator-chosen .bin and .clm_blob files in /lib/firmware/cypress)
set_fact:
rpi3bplus_rpi4_wifi_firmwares: # Dictionary keys (left side) are always strings, e.g. "19"
os:
- - brcmfmac43455-sdio.bin.orig
- - brcmfmac43455-sdio.clm_blob.orig
+ - cyfmac43455-sdio.bin.orig # 2023-02-25: 7.45.241 from 2021-11-01 on Ubuntu 22.04.2 too (cyfmac43455-sdio-standard.bin)
+ - cyfmac43455-sdio.clm_blob.orig # On Ubuntu 22.04.2 too (brcmfmac43455-sdio.clm_blob_2021-11-17_rpi)
+ ub:
+ - cyfmac43455-sdio.bin.distrib # 2023-02-25: STALE 7.45.234 from 2021-04-15; on Ubuntu 22.04.2 NOT RasPiOS
+ - cyfmac43455-sdio.clm_blob.distrib # 4.7K instead of 2.7K w/ above "os"
19:
- - brcmfmac43455-sdio.bin_2021-11-30_minimal
- - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi
+ - brcmfmac43455-sdio.bin_2021-11-30_minimal # On Ubuntu 22.04.2 too (cyfmac43455-sdio-minimal.bin)
+ - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi # On Ubuntu 22.04.2 too (cyfmac43455-sdio.clm_blob)
24:
- brcmfmac43455-sdio.bin_2021-10-05_3rd-trial-minimal
- - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi
+ - brcmfmac43455-sdio.clm_blob_2021-11-17_rpi # On Ubuntu 22.04.2 too (cyfmac43455-sdio.clm_blob)
32:
- brcmfmac43455-sdio.bin_2015-03-01_7.45.18.0_ub19.10.1
- - brcmfmac43455-sdio.clm_blob_2018-02-26_rpi
+ - brcmfmac43455-sdio.clm_blob_2018-02-26_rpi # 14K instead of 2.7K w/ above "os"
-- name: Symlink /lib/firmware/brcm/brcmfmac43455-sdio.bin.iiab -> {{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][0] }} (as rpi3bplus_rpi4_wifi_firmware is "{{ rpi3bplus_rpi4_wifi_firmware }}")
+- name: Symlink /lib/firmware/cypress/cyfmac43455-sdio.bin.iiab -> {{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][0] }} (as rpi3bplus_rpi4_wifi_firmware is "{{ rpi3bplus_rpi4_wifi_firmware }}")
file:
src: "{{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][0] }}"
- path: /lib/firmware/brcm/brcmfmac43455-sdio.bin.iiab
+ path: /lib/firmware/cypress/cyfmac43455-sdio.bin.iiab
state: link
force: yes
-- name: Symlink /lib/firmware/brcm/brcmfmac43455-sdio.clm_blob.iiab -> {{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][1] }} (as rpi3bplus_rpi4_wifi_firmware is "{{ rpi3bplus_rpi4_wifi_firmware }}")
+- name: Symlink /lib/firmware/cypress/cyfmac43455-sdio.clm_blob.iiab -> {{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][1] }} (as rpi3bplus_rpi4_wifi_firmware is "{{ rpi3bplus_rpi4_wifi_firmware }}")
file:
src: "{{ rpi3bplus_rpi4_wifi_firmwares[rpi3bplus_rpi4_wifi_firmware][1] }}"
- path: /lib/firmware/brcm/brcmfmac43455-sdio.clm_blob.iiab
+ path: /lib/firmware/cypress/cyfmac43455-sdio.clm_blob.iiab
state: link
force: yes
# Set 2 symlinks for RPi Zero W and 3 (43430)
-- name: Populate rpizerow_rpi3_wifi_firmwares dictionary (lookup table for operator-chosen .bin and .clm_blob files in /lib/firmware/brcm)
+- name: Populate rpizerow_rpi3_wifi_firmwares dictionary (lookup table for operator-chosen .bin and .clm_blob files in /lib/firmware/cypress)
set_fact:
rpizerow_rpi3_wifi_firmwares:
os:
- - brcmfmac43430-sdio.bin.orig
- - brcmfmac43430-sdio.clm_blob.orig
+ - cyfmac43430-sdio.bin.orig # 2023-02-25: 7.45.98 from 2021-07-19 on Ubuntu 22.04.2 too
+ - cyfmac43430-sdio.clm_blob.orig # On Ubuntu 22.04.2 too
+ ub:
+ - cyfmac43430-sdio.bin.distrib # 2023-02-25: STALE 7.45.98.118 from 2021-03-30; on Ubuntu 22.04.2 NOT RasPiOS
+ - cyfmac43430-sdio.clm_blob.distrib # Identical to above 4.7K cyfmac43430-sdio.clm_blob
30:
- brcmfmac43430-sdio.bin_2018-09-11_7.45.98.65
- - brcmfmac43430-sdio.clm_blob_2018-09-11_7.45.98.65
+ - brcmfmac43430-sdio.clm_blob_2018-09-11_7.45.98.65 # 14K instead of 4.7K w/ above "os" & "ub"
-- name: Symlink /lib/firmware/brcm/brcmfmac43430-sdio.bin.iiab -> {{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][0] }} (as rpizerow_rpi3_wifi_firmware is "{{ rpizerow_rpi3_wifi_firmware }}")
+- name: Symlink /lib/firmware/cypress/cyfmac43430-sdio.bin.iiab -> {{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][0] }} (as rpizerow_rpi3_wifi_firmware is "{{ rpizerow_rpi3_wifi_firmware }}")
file:
src: "{{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][0] }}"
- path: /lib/firmware/brcm/brcmfmac43430-sdio.bin.iiab
+ path: /lib/firmware/cypress/cyfmac43430-sdio.bin.iiab
state: link
force: yes
-- name: Symlink /lib/firmware/brcm/brcmfmac43430-sdio.clm_blob.iiab -> {{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][1] }} (as rpizerow_rpi3_wifi_firmware is "{{ rpizerow_rpi3_wifi_firmware }}")
+- name: Symlink /lib/firmware/cypress/cyfmac43430-sdio.clm_blob.iiab -> {{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][1] }} (as rpizerow_rpi3_wifi_firmware is "{{ rpizerow_rpi3_wifi_firmware }}")
file:
src: "{{ rpizerow_rpi3_wifi_firmwares[rpizerow_rpi3_wifi_firmware][1] }}"
- path: /lib/firmware/brcm/brcmfmac43430-sdio.clm_blob.iiab
+ path: /lib/firmware/cypress/cyfmac43430-sdio.clm_blob.iiab
state: link
force: yes
@@ -73,7 +81,7 @@
- { src: 'iiab-check-firmware.service', dest: '/etc/systemd/system/', mode: '0644' }
- { src: 'iiab-firmware-warn.sh', dest: '/etc/profile.d/', mode: '0644' }
-- name: Enable & (Re)Start iiab-check-firmware.service (also runs on each boot)
+- name: Enable & (Re)Start iiab-check-firmware.service (also runs on each boot) -- finalizing 2-or-4 symlink chains e.g. /lib/firmware/cypress/X.{bin|blob} -> /lib/firmware/cypress/X.{bin|blob}.iiab -> CHOSEN-FIRMWARE-FILE-OR-LINK
systemd:
name: iiab-check-firmware.service
daemon_reload: yes
diff --git a/roles/firmware/tasks/main.yml b/roles/firmware/tasks/main.yml
index 3e33890ba..dfd094acb 100644
--- a/roles/firmware/tasks/main.yml
+++ b/roles/firmware/tasks/main.yml
@@ -3,18 +3,22 @@
# client devices that can access your Raspberry Pi's internal WiFi hotspot.
# If IIAB's already installed, you should then run 'cd /opt/iiab/iiab' and
-# then 'sudo ./runrole firmware' (do run iiab-check-firmware for more tips!)
-
-# BACKGROUND AS OF 2022-01-10:
-# https://github.com/iiab/iiab/issues/823#issuecomment-662285202
-# https://github.com/iiab/iiab/issues/2853#issuecomment-957836892
-# https://github.com/iiab/iiab/pull/3103
-# https://github.com/RPi-Distro/firmware-nonfree/tree/bullseye/debian/config/brcm80211 (brcm, cypress)
-# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20190114-1+rpt11_all.deb from 2021-01-25
-# https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20210315-3+rpt4_all.deb from 2021-12-06
+# then 'sudo ./runrole firmware' (DO RUN iiab-check-firmware FOR MORE TIPS!)
+# 2018-2023 Background & Progress:
+#
+# Raspberry Pi 3 used to support 32 WiFi connections but is now limited to [4-10]
+# https://github.com/iiab/iiab/issues/823#issuecomment-662285202
+# Opinions about Pi 4B/3B+ WiFi features [practical AP firmware for schools!]
+# https://github.com/iiab/iiab/issues/2853#issuecomment-957836892
+# RPi WiFi hotspot firmware reliability fix, incl new/better choices for 3B+ & 4
+# https://github.com/iiab/iiab/pull/3103
+# Set WiFi firmware in /lib/firmware/cypress due to RasPiOS & Ubuntu changes
+# https://github.com/iiab/iiab/pull/3482
# RISK: What USB 3.0 stick/drive patterns degrade a Raspberry Pi's 2.4GHz WiFi?
-# https://github.com/iiab/iiab/issues/2638
+# https://github.com/iiab/iiab/issues/2638
+
+# ► SEE "MONITOR FIRMWARE UPDATES in 3 places especially" in tasks/download.yml ◄
- name: Install firmware (for RPi internal WiFi)
include_tasks: install.yml
diff --git a/roles/firmware/templates/iiab-check-firmware b/roles/firmware/templates/iiab-check-firmware
index b26810440..f10cd752b 100644
--- a/roles/firmware/templates/iiab-check-firmware
+++ b/roles/firmware/templates/iiab-check-firmware
@@ -1,11 +1,25 @@
#!/bin/bash
-# 2021-08-18: bash scripts using default_vars.yml &/or local_vars.yml
+# The 1st time /usr/bin/iiab-check-firmware runs (at the end of
+# firmware/tasks/install.yml) 2-4 lynchpin top links are put in place,
+# finalizing symlink chains like:
+#
+# /lib/firmware/cypress/X.{bin|blob} ->
+# /lib/firmware/cypress/X.{bin|blob}.iiab ->
+# CHOSEN-FIRMWARE-FILE-OR-LINK
+#
+# Also backing up top-of-chain originals (file or link!) by moving these to:
+#
+# /lib/firmware/cypress/.YYYY-MM-DD-HH:MM:SS
+#
+# NOTE these are "doubly timestamped" to preserve BOTH last-modif & moving date.
+
+# 2023-02-25: bash scripts using default_vars.yml &/or local_vars.yml
# https://github.com/iiab/iiab-factory/blob/master/iiab
# https://github.com/iiab/iiab/blob/master/roles/firmware/templates/iiab-check-firmware#L10-14
# https://github.com/iiab/iiab/blob/master/roles/network/templates/gateway/iiab-gen-iptables#L48-L52
-# https://github.com/iiab/maps/blob/master/osm-source/pages/viewer/scripts/iiab-install-map-region#L25-L34
-# https://github.com/iiab/iiab/blob/master/roles/openvpn/templates/iiab-support READS AND WRITES, INCL NON-BOOLEAN
+# https://github.com/iiab/maps/blob/master/osm-source/pages/viewer/scripts/iiab-install-map-region#L23-L39
+# https://github.com/iiab/iiab/blob/master/roles/0-DEPRECATED-ROLES/openvpn/templates/iiab-support READS AND WRITES, INCL NON-BOOLEAN
iiab_var_value() {
v1=$(grep "^$1:\s" /opt/iiab/iiab/vars/default_vars.yml | tail -1 | sed "s/^$1:\s\+//; s/#.*//; s/\s*$//; s/^\(['\"]\)\(.*\)\1$/\2/")
@@ -14,29 +28,29 @@ iiab_var_value() {
}
link_fw() {
- if [[ $(readlink /lib/firmware/brcm/$1) != $1.iiab ]] ; then
- echo
- mv /lib/firmware/brcm/$1 /lib/firmware/brcm/$1.$(date +%F-%T)
- ln -s $1.iiab /lib/firmware/brcm/$1
- echo -e "\e[1mSymlinked /lib/firmware/brcm/$1 -> $1.iiab\e[0m"
- touch /tmp/.fw_modified
+ if [[ $(readlink /lib/firmware/cypress/$1) != $1.iiab ]] ; then
+ echo
+ mv /lib/firmware/cypress/$1 /lib/firmware/cypress/$1.$(date +%F-%T)
+ ln -s $1.iiab /lib/firmware/cypress/$1
+ echo -e "\e[1mSymlinked /lib/firmware/cypress/$1 -> $1.iiab\e[0m"
+ touch /tmp/.fw_modified
fi
}
if [[ $(iiab_var_value rpi3bplus_rpi4_wifi_firmware) != "os" ]] ; then
- link_fw brcmfmac43455-sdio.bin
- link_fw brcmfmac43455-sdio.clm_blob
+ link_fw cyfmac43455-sdio.bin
+ link_fw cyfmac43455-sdio.clm_blob
fi
if [[ $(iiab_var_value rpizerow_rpi3_wifi_firmware) != "os" ]] ; then
- link_fw brcmfmac43430-sdio.bin
- link_fw brcmfmac43430-sdio.clm_blob
+ link_fw cyfmac43430-sdio.bin
+ link_fw cyfmac43430-sdio.clm_blob
fi
if [ -f /tmp/.fw_modified ]; then
bash /etc/profile.d/iiab-firmware-warn.sh
else
- echo -e "\n\e[1mWiFi Firmware links in /lib/firmware/brcm appear \e[92mCORRECT\e[0m\e[1m, per iiab/iiab#2853.\e[0m"
+ echo -e "\n\e[1mWiFi Firmware links in /lib/firmware/cypress appear \e[92mCORRECT\e[0m\e[1m, per iiab/iiab#3482\e[0m"
echo
echo -e "\e[100;1m(No reboot appears necessary!)\e[0m"
echo
@@ -46,7 +60,7 @@ else
echo -e " cd /opt/iiab/iiab"
echo -e " sudo iiab-hotspot-off # NO LONGER NEC? eg to restore 'wifi_up_down: True'"
echo -e " sudo ./runrole --reinstall firmware"
- echo -e " sudo ./iiab-network # SOMETIMES NECESSARY"
+ echo -e " sudo iiab-network # SOMETIMES NECESSARY"
echo -e " sudo iiab-hotspot-on # NO LONGER NEC? eg to restore 'wifi_up_down: True'"
echo -e " sudo reboot\n"
#echo
diff --git a/roles/firmware/templates/iiab-firmware-warn.sh b/roles/firmware/templates/iiab-firmware-warn.sh
index dd2c34dba..f9507496b 100644
--- a/roles/firmware/templates/iiab-firmware-warn.sh
+++ b/roles/firmware/templates/iiab-firmware-warn.sh
@@ -1,7 +1,7 @@
#!/bin/bash
if [ -f /tmp/.fw_modified ]; then
- echo -e "\n\e[41;1mWiFi Firmware link(s) modified, per iiab/iiab#2853: PLEASE REBOOT!\e[0m"
+ echo -e "\n\e[41;1mWiFi Firmware link(s) modified, per iiab/iiab#3482: PLEASE REBOOT!\e[0m"
echo
echo -e "If you want this warning to stop, reboot to remove /tmp/.fw_modified\n"
fi
diff --git a/roles/gitea/defaults/main.yml b/roles/gitea/defaults/main.yml
index 2a620f8cc..0032f1d3d 100644
--- a/roles/gitea/defaults/main.yml
+++ b/roles/gitea/defaults/main.yml
@@ -9,7 +9,7 @@
# Info needed to install Gitea:
-gitea_version: 1.18 # 2022-01-30: Grabs latest from this MAJOR/MINOR release branch. Rather than exhaustively hard-coding point releases (e.g. 1.14.5) every few weeks.
+gitea_version: "1.22" # 2022-01-30: Grabs latest from this MAJOR/MINOR release branch. Rather than exhaustively hard-coding point releases (e.g. 1.14.5) every few weeks. Quotes nec if trailing zero.
iset_suffixes:
i386: 386
x86_64: amd64
@@ -17,9 +17,9 @@ iset_suffixes:
armv6l: arm-6
armv7l: arm-6 # "arm-7" used to work, but no longer since 2019-04-20's Gitea 1.8.0: https://github.com/iiab/iiab/issues/1673 https://github.com/iiab/iiab/pull/1713 -- 2019-07-31: ARM7 support will return at some point, according to: https://github.com/go-gitea/gitea/pull/7037#issuecomment-516735216 (what about ARM8 support for RPi 4?)
-gitea_iset_suffix: "{{ iset_suffixes[ansible_architecture] | default('unknown') }}"
+gitea_iset_suffix: "{{ iset_suffixes[ansible_machine] | default('unknown') }}" # A bit safer than ansible_architecture (see kiwix/defaults/main.yml)
-gitea_download_url: "https://dl.gitea.io/gitea/{{ gitea_version }}/gitea-{{ gitea_version }}-linux-{{ gitea_iset_suffix }}"
+gitea_download_url: "https://dl.gitea.com/gitea/{{ gitea_version }}/gitea-{{ gitea_version }}-linux-{{ gitea_iset_suffix }}"
gitea_integrity_url: "{{ gitea_download_url }}.asc"
gitea_root_directory: "{{ content_base }}/gitea" # /library/gitea
diff --git a/roles/gitea/tasks/install.yml b/roles/gitea/tasks/install.yml
index 02dfa7cda..eed1559f8 100644
--- a/roles/gitea/tasks/install.yml
+++ b/roles/gitea/tasks/install.yml
@@ -1,3 +1,8 @@
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
# 1. Prepare to install Gitea: create user and directory structure
- name: Shut down existing Gitea instance (if we're reinstalling)
@@ -43,10 +48,10 @@
msg: "Could not find a binary for the CPU architecture \"{{ ansible_architecture }}\""
when: gitea_iset_suffix == "unknown"
-- name: Download Gitea binary {{ gitea_download_url }} to {{ gitea_install_path }} (0775, ~108 MB, SLOW DOWNLOAD CAN TAKE ~15 MIN)
+- name: Download Gitea binary {{ gitea_download_url }} to {{ gitea_install_path }} (0775, ~134 MB, SLOW DOWNLOAD CAN TAKE ~15 MIN)
get_url:
url: "{{ gitea_download_url }}"
- dest: "{{ gitea_install_path }}" # e.g. /library/gitea/bin/gitea-1.16
+ dest: "{{ gitea_install_path }}" # e.g. /library/gitea/bin/gitea-1.21
mode: 0775
timeout: "{{ download_timeout }}"
@@ -56,9 +61,9 @@
dest: "{{ gitea_checksum_path }}"
timeout: "{{ download_timeout }}"
-- name: Verify Gitea binary with GPG signature
+- name: Verify Gitea binary with GPG signature ("BAD signature" FALSE ALARMS continue as of 2023-07-16, despite their claims at https://docs.gitea.com/installation/install-from-binary#verify-gpg-signature)
shell: |
- gpg --keyserver pgp.mit.edu --recv {{ gitea_gpg_key }}
+ gpg --keyserver keys.openpgp.org --recv {{ gitea_gpg_key }}
gpg --verify {{ gitea_checksum_path }} {{ gitea_install_path }}
ignore_errors: yes
@@ -105,6 +110,17 @@
# 5. RECORD Gitea AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'gitea_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: gitea
+ option: gitea_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'gitea_installed: True'"
set_fact:
gitea_installed: True
diff --git a/roles/gitea/tasks/main.yml b/roles/gitea/tasks/main.yml
index 4fbd7359e..335911c96 100644
--- a/roles/gitea/tasks/main.yml
+++ b/roles/gitea/tasks/main.yml
@@ -27,7 +27,7 @@
- include_tasks: enable-or-disable.yml
- - name: Add 'gitea' to list of services at {{ iiab_ini_file }}
+ - name: Add 'gitea' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
section: gitea
diff --git a/roles/gitea/templates/app.ini.j2 b/roles/gitea/templates/app.ini.j2
index 00d503fdb..98add8b15 100644
--- a/roles/gitea/templates/app.ini.j2
+++ b/roles/gitea/templates/app.ini.j2
@@ -2,7 +2,8 @@
; Copy required sections to your own app.ini (default is custom/conf/app.ini)
; and modify as needed.
-; see https://docs.gitea.io/en-us/config-cheat-sheet/ for additional documentation.
+; see https://docs.gitea.com/administration/config-cheat-sheet for additional documentation.
+; https://docs.gitea.com/next/administration/config-cheat-sheet
; App name that shows in every page title
APP_NAME = {{ gitea_display_name }}
@@ -23,9 +24,11 @@ DEFAULT_PRIVATE = last
; Global limit of repositories per user, applied at creation time. -1 means no limit
MAX_CREATION_LIMIT = -1
; Mirror sync queue length, increase if mirror syncing starts hanging
-MIRROR_QUEUE_LENGTH = 1000
+; 2023-07-16 ERROR: MIRROR_QUEUE_LENGTH = 1000
+; `[repository].MIRROR_QUEUE_LENGTH`. Use new options in `[queue.mirror]`
; Patch test queue length, increase if pull request patch testing starts hanging
-PULL_REQUEST_QUEUE_LENGTH = 1000
+; 2023-07-16 ERROR: PULL_REQUEST_QUEUE_LENGTH = 1000
+; `[repository].PULL_REQUEST_QUEUE_LENGTH`. Use new options in `[queue.pr_patch_checker]`
; Preferred Licenses to place at the top of the List
; The name here must match the filename in conf/license or custom/conf/license
PREFERRED_LICENSES = Apache License 2.0,MIT License
@@ -201,13 +204,22 @@ PPROF_DATA_PATH = data/tmp/pprof
LANDING_PAGE = home
; Enables git-lfs support. true or false, default is false.
LFS_START_SERVER = false
-; Where your lfs files reside, default is data/lfs.
-LFS_CONTENT_PATH = {{ gitea_lfs_root }}
; LFS authentication secret, change this yourself
LFS_JWT_SECRET =
; LFS authentication validity period (in time.Duration), pushes taking longer than this may fail.
LFS_HTTP_AUTH_EXPIRY = 20m
+; lfs [Large File Storage] storage will override storage
+;
+[lfs]
+;STORAGE_TYPE = local
+;
+; Where your lfs files reside, default is data/lfs.
+PATH = {{ gitea_lfs_root }}
+;
+; override the minio base path if storage type is minio
+;MINIO_BASE_PATH = lfs/
+
; Define allowed algorithms and their minimum key length (use -1 to disable a type)
[ssh.minimum_key_sizes]
ED25519 = 256
@@ -240,7 +252,8 @@ ISSUE_INDEXER_PATH = indexers/issues.bleve
; repo indexer by default disabled, since it uses a lot of disk space
REPO_INDEXER_ENABLED = false
REPO_INDEXER_PATH = indexers/repos.bleve
-UPDATE_BUFFER_LEN = 20
+; 2023-07-16 ERROR: UPDATE_BUFFER_LEN = 20
+; `[indexer].UPDATE_BUFFER_LEN`. Use new options in `[queue.issue_indexer]`
MAX_FILE_SIZE = 1048576
[admin]
@@ -360,7 +373,8 @@ PAGING_NUM = 10
[mailer]
ENABLED = false
; Buffer length of channel, keep it as it is if you don't know what it is.
-SEND_BUFFER_LEN = 100
+; 2023-07-16 ERROR: SEND_BUFFER_LEN = 100
+; `[mailer].SEND_BUFFER_LEN`. Use new options in `[queue.mailer]`
; Name displayed in mail title
SUBJECT = %(APP_NAME)s
; Mail server
diff --git a/roles/iiab-admin/README.rst b/roles/iiab-admin/README.rst
index 5017e4186..2dbadaa62 100644
--- a/roles/iiab-admin/README.rst
+++ b/roles/iiab-admin/README.rst
@@ -36,7 +36,7 @@ Security
#. ``iiab-admin`` (specified by ``admin_console_group`` in `/opt/iiab/iiab/vars/default_vars.yml <../../vars/default_vars.yml>`_ and `/opt/iiab/iiab-admin-console/vars/default_vars.yml `_)
#. ``sudo``
* Please read much more about what escalated (root) actions are authorized when you log into IIAB's Admin Console, and how this works: https://github.com/iiab/iiab-admin-console/blob/master/Authentication.md
-* If your IIAB includes OpenVPN, ``/root/.ssh/authorized_keys`` should be installed by `roles/openvpn/tasks/install.yml <../openvpn/tasks/install.yml>`_ to facilitate remote community support. Feel free to remove this as mentioned here: https://wiki.iiab.io/go/Security
+* If your IIAB includes Tailscale (VPN), ``/root/.ssh/authorized_keys`` should be installed by `roles/tailscale/tasks/install.yml <../tailscale/tasks/install.yml>`_ to facilitate remote community support. Feel free to remove this as mentioned here: https://wiki.iiab.io/go/Security
* Auto-checking for the default/published password (as specified by ``iiab_admin_published_pwd`` in `/opt/iiab/iiab/vars/default_vars.yml <../../vars/default_vars.yml>`_) is implemented in `/etc/profile.d `_ (and `/etc/xdg/lxsession/LXDE-pi `_ when it exists, i.e. on Raspberry Pi OS with desktop).
Example
@@ -56,16 +56,16 @@ Historical Notes
Remote Support Tools
--------------------
-The `iiab-diagnostics <../../scripts/iiab-diagnostics.README.md>`_ and `OpenVPN `_ options mentioned above can greatly help you empower your community, typically during the implementation phase of your project, even if Linux is new to you.
+The `iiab-diagnostics <../../scripts/iiab-diagnostics.README.md>`_ and `Tailscale (VPN) `_ options mentioned above can greatly help you empower your community, typically during the implementation phase of your project, even if Linux is new to you.
-Similarly, `access.yml `_ adds a couple text mode tools — extremely helpful over expensive / low-bandwidth connections:
+Similarly, `tasks/main.yml `_ adds a couple text mode tools — extremely helpful over expensive / low-bandwidth connections:
* `lynx `_
* `screen `_
*More great tools to help you jumpstart community action at a distance:*
-* http://FAQ.IIAB.IO > "How can I remotely manage my Internet-in-a-Box?"
+* `FAQ.IIAB.IO `_ > "How can I remotely manage my Internet-in-a-Box?"
Admin Console
-------------
diff --git a/roles/iiab-admin/tasks/main.yml b/roles/iiab-admin/tasks/main.yml
index 09a408aa4..fabe0bffe 100644
--- a/roles/iiab-admin/tasks/main.yml
+++ b/roles/iiab-admin/tasks/main.yml
@@ -2,6 +2,11 @@
# https://github.com/iiab/iiab/blob/master/roles/iiab-admin/README.rst
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
- name: "Install text-mode packages, useful during remote access: lynx, screen"
package:
name:
@@ -35,6 +40,17 @@
# RECORD iiab-admin AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'iiab_admin_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: iiab-admin
+ option: iiab_admin_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'iiab_admin_installed: True'"
set_fact:
iiab_admin_installed: True
diff --git a/roles/iiab-admin/tasks/pwd-warnings.yml b/roles/iiab-admin/tasks/pwd-warnings.yml
index e63c8841b..600a935bb 100644
--- a/roles/iiab-admin/tasks/pwd-warnings.yml
+++ b/roles/iiab-admin/tasks/pwd-warnings.yml
@@ -2,34 +2,35 @@
# AND roles/network/tasks/netwarn.yml FOR iiab-network
-- name: Install /etc/profile.d/sshpwd-profile-iiab.sh from template, to issue warnings (during shell/ssh logins) if iiab-admin password is the default
+- name: Install /etc/profile.d/iiab-pwdwarn-profile.sh from template, to issue warnings (during shell/ssh logins) if iiab-admin password is the default
template:
- src: sshpwd-profile-iiab.sh.j2
- dest: /etc/profile.d/sshpwd-profile-iiab.sh
+ src: iiab-pwdwarn-profile.sh.j2
+ dest: /etc/profile.d/iiab-pwdwarn-profile.sh
mode: '0644'
-- name: Is /etc/xdg/lxsession/LXDE-pi a directory?
+- name: Does directory /home/{{ iiab_admin_user }}/.config/labwc/ exist?
stat:
- path: /etc/xdg/lxsession/LXDE-pi
- register: lx
+ path: /home/{{ iiab_admin_user }}/.config/labwc/
+ register: labwc_dir
-- name: "If so, install from template: /etc/xdg/lxsession/LXDE-pi/sshpwd-lxde-iiab.sh"
+- name: "If so, install from template: /usr/local/sbin/iiab-pwdwarn-labwc"
template:
- src: sshpwd-lxde-iiab.sh.j2
- dest: /etc/xdg/lxsession/LXDE-pi/sshpwd-lxde-iiab.sh
+ src: iiab-pwdwarn-labwc.j2
+ dest: /usr/local/sbin/iiab-pwdwarn-labwc
mode: '0755'
- when: lx.stat.isdir is defined and lx.stat.isdir # and is_raspbian
+ when: labwc_dir.stat.exists and labwc_dir.stat.isdir
-# 2019-03-07: This popup (/etc/xdg/lxsession/LXDE-pi/sshpwd-lxde-iiab.sh) does
+# 2019-03-07: This pop-up (/etc/xdg/lxsession/LXDE-pi/sshpwd-lxde-iiab.sh) did
# not actually appear when triggered by /etc/xdg/autostart/pprompt-iiab.desktop
# (or pprompt.desktop as Raspbian has working since 2018-11-13!) Too bad as it
-# would be really nice to standardize this popup across Ubermix & all distros..
+# would be really nice to standardize pop-ups across Ubermix & all distros...
# Is this a permissions/security issue presumably? Official autostart spec is:
# https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html
# Raspbian's 2016-2018 evolution here: https://github.com/iiab/iiab/issues/1537
-- name: ...and put a line in /etc/xdg/lxsession/LXDE-pi/autostart to trigger popups
+- name: ...and put a line in /home/{{ iiab_admin_user }}/.config/labwc/autostart to trigger iiab-pwdwarn-labwc (& pop-up as nec)
lineinfile:
- path: /etc/xdg/lxsession/LXDE-pi/autostart
- line: "@/etc/xdg/lxsession/LXDE-pi/sshpwd-lxde-iiab.sh"
- when: lx.stat.isdir is defined and lx.stat.isdir # and is_raspbian
+ path: /home/{{ iiab_admin_user }}/.config/labwc/autostart # iiab-admin
+ create: yes
+ line: '/usr/local/sbin/iiab-pwdwarn-labwc &'
+ when: labwc_dir.stat.exists and labwc_dir.stat.isdir
diff --git a/roles/iiab-admin/tasks/sudo-prereqs.yml b/roles/iiab-admin/tasks/sudo-prereqs.yml
index 1b608fef1..9370666b2 100644
--- a/roles/iiab-admin/tasks/sudo-prereqs.yml
+++ b/roles/iiab-admin/tasks/sudo-prereqs.yml
@@ -1,6 +1,6 @@
- name: 'Install package: sudo'
package:
- name: sudo # (1) Should be installed prior to installing IIAB, (2) Can also be installed by roles/1-prep's roles/openvpn/tasks/install.yml, (3) Is definitely installed by 1-prep here, (4) Used to be installed by roles/2-common/tasks/packages.yml (but that's too late!)
+ name: sudo # (1) Should be installed prior to installing IIAB, (2) Can be installed by 1-prep's roles/tailscale/tasks/install.yml, (3) Can be installed by 1-prep's roles/iiab-admin/tasks/sudo-prereqs.yml here, (4) Used to be installed by roles/2-common/tasks/packages.yml (but that's too late!)
- name: Temporarily make file /etc/sudoers editable (0640)
file:
diff --git a/roles/iiab-admin/templates/sshpwd-lxde-iiab.sh.j2 b/roles/iiab-admin/templates/iiab-pwdwarn-labwc.j2
similarity index 100%
rename from roles/iiab-admin/templates/sshpwd-lxde-iiab.sh.j2
rename to roles/iiab-admin/templates/iiab-pwdwarn-labwc.j2
diff --git a/roles/iiab-admin/templates/sshpwd-profile-iiab.sh.j2 b/roles/iiab-admin/templates/iiab-pwdwarn-profile.sh.j2
similarity index 100%
rename from roles/iiab-admin/templates/sshpwd-profile-iiab.sh.j2
rename to roles/iiab-admin/templates/iiab-pwdwarn-profile.sh.j2
diff --git a/roles/internetarchive/tasks/install.yml b/roles/internetarchive/tasks/install.yml
index 4ed845706..2821a9ffd 100644
--- a/roles/internetarchive/tasks/install.yml
+++ b/roles/internetarchive/tasks/install.yml
@@ -9,10 +9,10 @@
include_role:
name: nodejs
-- name: Assert that 10.x <= nodejs_version ({{ nodejs_version }}) <= 18.x
+- name: Assert that 10.x <= nodejs_version ({{ nodejs_version }}) <= 22.x
assert:
- that: nodejs_version is version('10.x', '>=') and nodejs_version is version('18.x', '<=')
- fail_msg: "Internet Archive install cannot proceed, as it currently requires Node.js 10.x - 18.x, and your nodejs_version is set to {{ nodejs_version }}. Please check the value of nodejs_version in /opt/iiab/iiab/vars/default_vars.yml and possibly also /etc/iiab/local_vars.yml"
+ that: nodejs_version is version('10.x', '>=') and nodejs_version is version('22.x', '<=')
+ fail_msg: "Internet Archive install cannot proceed, as it currently requires Node.js 10.x - 22.x, and your nodejs_version is set to {{ nodejs_version }}. Please check the value of nodejs_version in /opt/iiab/iiab/vars/default_vars.yml and possibly also /etc/iiab/local_vars.yml"
quiet: yes
- name: "Set 'yarn_install: True' and 'yarn_enabled: True'"
@@ -30,6 +30,11 @@
state: present
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+
# 2. CREATE 2 DIRS, WIPE /opt/iiab/internetarchive/node_modules & RUN YARN
- name: mkdir {{ internetarchive_dir }}
@@ -64,6 +69,17 @@
# 4. RECORD Internet Archive AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'internetarchive_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: internetarchive
+ option: internetarchive_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'internetarchive_installed: True'"
set_fact:
internetarchive_installed: True
diff --git a/roles/jupyterhub/README.md b/roles/jupyterhub/README.md
index 583466e04..6a48cacf5 100644
--- a/roles/jupyterhub/README.md
+++ b/roles/jupyterhub/README.md
@@ -1,5 +1,7 @@
## JupyterHub programming environment with student Notebooks
+### CAUTION: Internet-in-a-Box (IIAB) does not support JupyterHub on 32-bit OS's, where installation will likely fail ([#3639](https://github.com/iiab/iiab/issues/3639)).
+
#### Secondary schools may want to consider JupyterHub to integrate coding with dynamic interactive graphing — A New Way to Think About Programming — allowing students to integrate science experiment results and program output within their own blog-like "Jupyter Notebooks."
* Jupyter Notebooks are widely used in the scientific community:
@@ -9,10 +11,11 @@
* [JupyterHub changelog](https://jupyterhub.readthedocs.io/en/stable/changelog.html#changelog)
* Students create their own accounts on first use — e.g. at http://box.lan/jupyterhub — just as if they're logging in regularly (unfortunately the login screen doesn't make that clear, but the teacher _does not_ need to be involved!)
* A student can then sign in with their username and password, to gain access to their files (Jupyter Notebooks).
- * The teacher should set and protect JupyterHub's overall `Admin` password, just in case. As with student accounts, the login screen doesn't make that clear — so just log in with username `Admin` — using any password that you want to become permanent.
-* Individual student folders are created in `/var/lib/private/` on the Internet-in-a-Box (IIAB) server:
+ * The teacher should set and protect JupyterHub's overall `Admin` password, just in case. As with student accounts, the login screen unfortunately doesn't make that clear — so just log in with username `Admin` — using any password that you want to become permanent.
+* Individual student folders are created in `/var/lib/private/` on your Internet-in-a-Box (IIAB) server:
* A student will only be able to see their own work — they do not have privileges outside of their own folder.
* Students may upload Jupyter Notebooks to the IIAB server, and download the current state of their work via a normal browser.
+ * Linux administrators can read more about JupyterHub's [Local Users](https://github.com/jupyterhub/systemdspawner#local-users) and [c.SystemdSpawner.dynamic_users = True](https://github.com/jupyterhub/systemdspawner#dynamic_users)
### Settings
@@ -26,10 +29,11 @@ In some rare circumstances, it may be necessary to restart JupyterHub's systemd
sudo systemctl restart jupyterhub
```
-FYI `/opt/iiab/jupyterhub` is a Python 3 virtual environment, that can be activated with the usual formula:
+FYI `/opt/iiab/jupyterhub` is a Python 3 virtual environment, that can be activated (and deactivated) with the usual:
```
source /opt/iiab/jupyterhub/bin/activate
+(jupyterhub) root@box:~# deactivate
```
Passwords are hashed using 4096 rounds of the latest Blowfish (bcrypt's $2b$ algorithm) and stored in:
@@ -42,19 +46,19 @@ Passwords are hashed using 4096 rounds of the latest Blowfish (bcrypt's $2b$ alg
Users can change their password by logging in, and then visiting URL: http://box.lan/jupyterhub/auth/change-password
-NOTE: This is the only way to change the password for user 'Admin', because Control Panel > Admin (below) does not permit deletion of this account.
+NOTE: This is the only way to change the password for user `Admin`, because **File > Hub Control Panel > Admin** (below) does not permit deletion of this account.
-### Control Panel > Admin page, to manage other accounts
+### File > Hub Control Panel > Admin, to manage accounts
The `Admin` user (and any users given `Admin` privilege) can reset user passwords by deleting the user from JupyterHub's **Admin** page (below). This logs the user out, but does not remove any of their data or home directories. The user can then set a new password in the usual way — simply by logging in. Example:
-1. As a user with `Admin` privilege, click **Control Panel** in the top right of your JupyterHub:
+1. As a user with `Admin` privilege, click **File > Hub Control Panel** in your JupyterHub:
- 
+ 
-2. In the Control Panel, open the **Admin** link in the top left:
+2. At the top of the Control Panel, click **Admin**:
- 
+ 
This opens up the JupyterHub Admin page, where you can add / delete users, start / stop peoples’ servers and see who is online.
@@ -70,6 +74,20 @@ The `Admin` user (and any users given `Admin` privilege) can reset user password
_WARNING: If on login users see "500 : Internal Server Error", you may need to remove ALL files of the form_ `/run/jupyter-johndoe-singleuser`
+### Logging
+
+To see JupyterHub's (typically very long!) log, run:
+
+```
+journalctl -u jupyterhub
+```
+
+Sometimes other logs might also be available, e.g.:
+
+```
+journalctl -u jupyter-admin-singleuser
+```
+
### PAWS/Jupyter Notebooks for Python Beginners
While PAWS is a little bit off topic, if you have an interest in Wikipedia, please do see this 23m 42s video ["Intro to PAWS/Jupyter notebooks for Python beginners"](https://www.youtube.com/watch?v=AUZkioRI-aA&list=PLeoTcBlDanyNQXBqI1rVXUqUTSSiuSIXN&index=8) by Chico Venancio, from 2021-06-01.
diff --git a/roles/jupyterhub/tasks/install.yml b/roles/jupyterhub/tasks/install.yml
index 68f909ea7..57a503014 100644
--- a/roles/jupyterhub/tasks/install.yml
+++ b/roles/jupyterhub/tasks/install.yml
@@ -13,10 +13,20 @@
when: nodejs_installed is undefined
-- name: "Install package: python3-venv"
- package:
- name: python3-venv
- state: present
+- name: Record (initial) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df1
+
+# 2025-02-16
+#- name: "Install package: python3-psutil"
+# package:
+# name: python3-psutil
+# state: present
+
+- name: Remove previous virtual environment {{ jupyterhub_venv }}
+ file:
+ path: "{{ jupyterhub_venv }}"
+ state: absent
- name: Make 3 directories to hold JupyterHub config
file:
@@ -33,17 +43,18 @@
global: yes
state: latest
-- name: "pip install 3 packages into virtual environment: {{ jupyterhub_venv }} (~271 MB total, after 2 Ansible calls)"
+- name: "pip install 3 packages into virtual environment: {{ jupyterhub_venv }} (~316 MB total, after 2 Ansible calls)"
pip:
name:
- pip
- wheel
- jupyterhub
virtualenv: "{{ jupyterhub_venv }}" # /opt/iiab/jupyterhub
- virtualenv_site_packages: no
- virtualenv_command: python3 -m venv "{{ jupyterhub_venv }}" # 2021-07-29: This works on RasPiOS 10, Debian 11, Ubuntu 20.04 and Mint 20 -- however if you absolutely must use the older Debian 10 -- you can work around errors "can't find Rust compiler" and "This package requires Rust >=1.41.0" if you (1) revert this line to 'virtualenv_command: virtualenv' AND (2) uncomment the line just below
+ #virtualenv_site_packages: no
+ virtualenv_command: python3 -m venv "{{ jupyterhub_venv }}" # 2025-02-16
+ #virtualenv_command: python3 -m venv --system-site-packages "{{ jupyterhub_venv }}" # 2021-07-29: This works on RasPiOS 10, Debian 11, Ubuntu 20.04 and Mint 20 -- however if you absolutely must use the older Debian 10 -- you can work around errors "can't find Rust compiler" and "This package requires Rust >=1.41.0" if you (1) revert this line to 'virtualenv_command: virtualenv' AND (2) uncomment the line just below
#virtualenv_python: python3 # 2021-07-29: Was needed when above line was 'virtualenv_command: virtualenv' (generally for Python 2)
- extra_args: "--no-cache-dir" # 2021-11-30, 2022-07-07: The "--pre" flag had earlier been needed, for beta-like pre-releases of JupyterHub 2.0.0
+ extra_args: "--no-cache-dir --prefer-binary" # 2021-11-30, 2022-07-07: The "--pre" flag had earlier been needed, for beta-like pre-releases of JupyterHub 2.0.0
# 2022-07-07: Attempting to "pip install" all 7 together (3 above + 4 below)
# fails on OS's like 64-bit RasPiOS (but interestingly works on Ubuntu 22.04!)
@@ -57,9 +68,10 @@
- jupyterhub-systemdspawner
- ipywidgets
virtualenv: "{{ jupyterhub_venv }}"
- virtualenv_site_packages: no
- virtualenv_command: python3 -m venv "{{ jupyterhub_venv }}"
- extra_args: "--no-cache-dir"
+ #virtualenv_site_packages: no
+ virtualenv_command: python3 -m venv "{{ jupyterhub_venv }}" # 2025-02-16
+ #virtualenv_command: python3 -m venv --system-site-packages "{{ jupyterhub_venv }}"
+ extra_args: "--no-cache-dir --prefer-binary" # 2023-10-01: Lifesaver when recent wheels (e.g. piwheels.org) are inevitably not yet built! SEE #3560
- name: "Install from template: {{ jupyterhub_venv }}/etc/jupyterhub/jupyterhub_config.py"
template:
@@ -99,6 +111,17 @@
# RECORD JupyterHub AS INSTALLED
+- name: Record (final) disk space used
+ shell: df -B1 --output=used / | tail -1
+ register: df2
+
+- name: Add 'jupyterhub_disk_usage = {{ df2.stdout|int - df1.stdout|int }}' to {{ iiab_ini_file }}
+ ini_file:
+ path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
+ section: jupyterhub
+ option: jupyterhub_disk_usage
+ value: "{{ df2.stdout|int - df1.stdout|int }}"
+
- name: "Set 'jupyterhub_installed: True'"
set_fact:
jupyterhub_installed: True
diff --git a/roles/jupyterhub/templates/jupyterhub_config.py.j2 b/roles/jupyterhub/templates/jupyterhub_config.py.j2
index a3c5b077f..5abc7deb5 100644
--- a/roles/jupyterhub/templates/jupyterhub_config.py.j2
+++ b/roles/jupyterhub/templates/jupyterhub_config.py.j2
@@ -1,5 +1,18 @@
+# 2023-02-10 /opt/iiab/jupyterhub/etc/jupyterhub/jupyterhub_config.py update:
+# https://jupyterhub.readthedocs.io/en/stable/getting-started/config-basics.html
+#
+# 1) To generate this 1500+ line stub, I first ran JupyterHub 3.1.1's:
+# /opt/iiab/jupyterhub/bin/jupyterhub --generate-config
+# 2) Then I manually inserted 8 of IIAB's 10 legacy custom lines below, from:
+# grep ^c /opt/iiab/iiab/roles/jupyterhub/templates/jupyterhub_config.py.j2
+# 3) Finally I added the following line on @jvonau's suggestion: (#3475)
+# c.ConfigurableHTTPProxy.pid_file = "/run/jupyterhub-proxy.pid"
+
+
# Configuration file for jupyterhub.
+c = get_config() #noqa
+
#------------------------------------------------------------------------------
# Application(SingletonConfigurable) configuration
#------------------------------------------------------------------------------
@@ -18,6 +31,53 @@
# Default: 30
# c.Application.log_level = 30
+## Configure additional log handlers.
+#
+# The default stderr logs handler is configured by the log_level, log_datefmt
+# and log_format settings.
+#
+# This configuration can be used to configure additional handlers (e.g. to
+# output the log to a file) or for finer control over the default handlers.
+#
+# If provided this should be a logging configuration dictionary, for more
+# information see:
+# https://docs.python.org/3/library/logging.config.html#logging-config-
+# dictschema
+#
+# This dictionary is merged with the base logging configuration which defines
+# the following:
+#
+# * A logging formatter intended for interactive use called
+# ``console``.
+# * A logging handler that writes to stderr called
+# ``console`` which uses the formatter ``console``.
+# * A logger with the name of this application set to ``DEBUG``
+# level.
+#
+# This example adds a new handler that writes to a file:
+#
+# .. code-block:: python
+#
+# c.Application.logging_config = {
+# 'handlers': {
+# 'file': {
+# 'class': 'logging.FileHandler',
+# 'level': 'DEBUG',
+# 'filename': '',
+# }
+# },
+# 'loggers': {
+# '': {
+# 'level': 'DEBUG',
+# # NOTE: if you don't list the default "console"
+# # handler here then it will be disabled
+# 'handlers': ['console', 'file'],
+# },
+# }
+# }
+# Default: {}
+# c.Application.logging_config = {}
+
## Instead of starting the Application, dump configuration to stdout
# Default: False
# c.Application.show_config = False
@@ -60,11 +120,13 @@
# Default: 30
# c.JupyterHub.activity_resolution = 30
-## Grant admin users permission to access single-user servers.
+## DEPRECATED since version 2.0.0.
#
-# Users should be properly informed if this is enabled.
+# The default admin role has full permissions, use custom RBAC scopes instead to
+# create restricted administrator roles.
+# https://jupyterhub.readthedocs.io/en/stable/rbac/index.html
# Default: False
-c.JupyterHub.admin_access = True
+# c.JupyterHub.admin_access = False
## DEPRECATED since version 0.7.2, use Authenticator.admin_users instead.
# Default: set()
@@ -78,14 +140,23 @@ c.JupyterHub.admin_access = True
# Default: False
# c.JupyterHub.answer_yes = False
+## The default amount of records returned by a paginated endpoint
+# Default: 50
+# c.JupyterHub.api_page_default_limit = 50
+
+## The maximum amount of records that can be returned at once
+# Default: 200
+# c.JupyterHub.api_page_max_limit = 200
+
## PENDING DEPRECATION: consider using services
#
-# Dict of token:username to be loaded into the database.
+# Dict of token:username to be loaded into the database.
#
-# Allows ahead-of-time generation of API tokens for use by externally managed
-# services, which authenticate as JupyterHub users.
+# Allows ahead-of-time generation of API tokens for use by externally managed services,
+# which authenticate as JupyterHub users.
#
-# Consider using services for general services that talk to the JupyterHub API.
+# Consider using services for general services that talk to the
+# JupyterHub API.
# Default: {}
# c.JupyterHub.api_tokens = {}
@@ -112,49 +183,53 @@ c.JupyterHub.admin_access = True
# Currently installed:
# - default: jupyterhub.auth.PAMAuthenticator
# - dummy: jupyterhub.auth.DummyAuthenticator
+# - null: jupyterhub.auth.NullAuthenticator
# - pam: jupyterhub.auth.PAMAuthenticator
# Default: 'jupyterhub.auth.PAMAuthenticator'
+# c.JupyterHub.authenticator_class = 'jupyterhub.auth.PAMAuthenticator'
c.JupyterHub.authenticator_class = 'firstuseauthenticator.FirstUseAuthenticator'
## The base URL of the entire application.
#
-# Add this to the beginning of all JupyterHub URLs. Use base_url to run
-# JupyterHub within an existing website.
+# Add this to the beginning of all JupyterHub URLs.
+# Use base_url to run JupyterHub within an existing website.
#
-# .. deprecated: 0.9
-# Use JupyterHub.bind_url
+# .. deprecated: 0.9
+# Use JupyterHub.bind_url
# Default: '/'
+# c.JupyterHub.base_url = '/'
c.JupyterHub.base_url = '/jupyterhub'
## The public facing URL of the whole JupyterHub application.
#
-# This is the address on which the proxy will bind. Sets protocol, ip, base_url
+# This is the address on which the proxy will bind.
+# Sets protocol, ip, base_url
# Default: 'http://:8000'
# c.JupyterHub.bind_url = 'http://:8000'
## Whether to shutdown the proxy when the Hub shuts down.
#
-# Disable if you want to be able to teardown the Hub while leaving the proxy
-# running.
+# Disable if you want to be able to teardown the Hub while leaving the
+# proxy running.
#
-# Only valid if the proxy was starting by the Hub process.
+# Only valid if the proxy was starting by the Hub process.
#
-# If both this and cleanup_servers are False, sending SIGINT to the Hub will
-# only shutdown the Hub, leaving everything else running.
+# If both this and cleanup_servers are False, sending SIGINT to the Hub will
+# only shutdown the Hub, leaving everything else running.
#
-# The Hub should be able to resume from database state.
+# The Hub should be able to resume from database state.
# Default: True
# c.JupyterHub.cleanup_proxy = True
## Whether to shutdown single-user servers when the Hub shuts down.
#
-# Disable if you want to be able to teardown the Hub while leaving the single-
-# user servers running.
+# Disable if you want to be able to teardown the Hub while leaving the
+# single-user servers running.
#
-# If both this and cleanup_proxy are False, sending SIGINT to the Hub will only
-# shutdown the Hub, leaving everything else running.
+# If both this and cleanup_proxy are False, sending SIGINT to the Hub will
+# only shutdown the Hub, leaving everything else running.
#
-# The Hub should be able to resume from database state.
+# The Hub should be able to resume from database state.
# Default: True
# c.JupyterHub.cleanup_servers = True
@@ -184,33 +259,54 @@ c.JupyterHub.base_url = '/jupyterhub'
# Default: False
# c.JupyterHub.confirm_no_ssl = False
-## Number of days for a login cookie to be valid. Default is two weeks.
+## Number of days for a login cookie to be valid.
+# Default is two weeks.
# Default: 14
# c.JupyterHub.cookie_max_age_days = 14
## The cookie secret to use to encrypt cookies.
#
-# Loaded from the JPY_COOKIE_SECRET env variable by default.
+# Loaded from the JPY_COOKIE_SECRET env variable by default.
#
-# Should be exactly 256 bits (32 bytes).
-# Default: b''
+# Should be exactly 256 bits (32 bytes).
+# Default: traitlets.Undefined
+# c.JupyterHub.cookie_secret = traitlets.Undefined
c.JupyterHub.cookie_secret = b'helloiiabitsrainingb123456789012'
## File in which to store the cookie secret.
# Default: 'jupyterhub_cookie_secret'
# c.JupyterHub.cookie_secret_file = 'jupyterhub_cookie_secret'
-## The location of jupyterhub data files (e.g. /usr/local/share/jupyterhub)
-# Default: '/opt/iiab/jupyter/share/jupyterhub'
-# c.JupyterHub.data_files_path = '/opt/iiab/jupyter/share/jupyterhub'
+## Custom scopes to define.
+#
+# For use when defining custom roles,
+# to grant users granular permissions
+#
+# All custom scopes must have a description,
+# and must start with the prefix `custom:`.
+#
+# For example::
+#
+# custom_scopes = {
+# "custom:jupyter_server:read": {
+# "description": "read-only access to a single-user server",
+# },
+# }
+# Default: {}
+# c.JupyterHub.custom_scopes = {}
-## Include any kwargs to pass to the database connection. See
-# sqlalchemy.create_engine for details.
+## The location of jupyterhub data files (e.g. /usr/local/share/jupyterhub)
+# Default: '/opt/iiab/jupyterhub/share/jupyterhub'
+# c.JupyterHub.data_files_path = '/opt/iiab/jupyterhub/share/jupyterhub'
+
+## Include any kwargs to pass to the database connection.
+# See sqlalchemy.create_engine for details.
# Default: {}
# c.JupyterHub.db_kwargs = {}
## url for the database. e.g. `sqlite:///jupyterhub.sqlite`
# Default: 'sqlite:///jupyterhub.sqlite'
+# c.JupyterHub.db_url = 'sqlite:///jupyterhub.sqlite'
c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
## log all database transactions. This has A LOT of output
@@ -221,8 +317,13 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: False
# c.JupyterHub.debug_proxy = False
-## If named servers are enabled, default name of server to spawn or open, e.g. by
-# user-redirect.
+## If named servers are enabled, default name of server to spawn or open when no
+# server is specified, e.g. by user-redirect.
+#
+# Note: This has no effect if named servers are not enabled, and does _not_
+# change the existence or behavior of the default server named `''` (the empty
+# string). This only affects which named server is launched when no server is
+# specified, e.g. by links to `/hub/user-redirect/lab/tree/mynotebook.ipynb`.
# Default: ''
# c.JupyterHub.default_server_name = ''
@@ -245,30 +346,28 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: traitlets.Undefined
# c.JupyterHub.default_url = traitlets.Undefined
-## Dict authority:dict(files). Specify the key, cert, and/or ca file for an
-# authority. This is useful for externally managed proxies that wish to use
-# internal_ssl.
+## Dict authority:dict(files). Specify the key, cert, and/or
+# ca file for an authority. This is useful for externally managed
+# proxies that wish to use internal_ssl.
#
-# The files dict has this format (you must specify at least a cert)::
+# The files dict has this format (you must specify at least a cert)::
#
-# {
-# 'key': '/path/to/key.key',
-# 'cert': '/path/to/cert.crt',
-# 'ca': '/path/to/ca.crt'
-# }
+# {
+# 'key': '/path/to/key.key',
+# 'cert': '/path/to/cert.crt',
+# 'ca': '/path/to/ca.crt'
+# }
#
-# The authorities you can override: 'hub-ca', 'notebooks-ca', 'proxy-api-ca',
-# 'proxy-client-ca', and 'services-ca'.
+# The authorities you can override: 'hub-ca', 'notebooks-ca',
+# 'proxy-api-ca', 'proxy-client-ca', and 'services-ca'.
#
-# Use with internal_ssl
+# Use with internal_ssl
# Default: {}
# c.JupyterHub.external_ssl_authorities = {}
-## Register extra tornado Handlers for jupyterhub.
+## DEPRECATED.
#
-# Should be of the form ``("", Handler)``
-#
-# The Hub prefix will be added, so `/my-page` will be served at `/hub/my-page`.
+# If you need to register additional HTTP endpoints please use services instead.
# Default: []
# c.JupyterHub.extra_handlers = []
@@ -282,6 +381,14 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: []
# c.JupyterHub.extra_log_handlers = []
+## Alternate header to use as the Host (e.g., X-Forwarded-Host)
+# when determining whether a request is cross-origin
+#
+# This may be useful when JupyterHub is running behind a proxy that rewrites
+# the Host header.
+# Default: ''
+# c.JupyterHub.forwarded_host_header = ''
+
## Generate certs used for internal ssl
# Default: False
# c.JupyterHub.generate_certs = False
@@ -303,19 +410,19 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: ''
# c.JupyterHub.hub_bind_url = ''
-## The ip or hostname for proxies and spawners to use for connecting to the Hub.
+## The ip or hostname for proxies and spawners to use
+# for connecting to the Hub.
#
-# Use when the bind address (`hub_ip`) is 0.0.0.0, :: or otherwise different
-# from the connect address.
+# Use when the bind address (`hub_ip`) is 0.0.0.0, :: or otherwise different
+# from the connect address.
#
-# Default: when `hub_ip` is 0.0.0.0 or ::, use `socket.gethostname()`, otherwise
-# use `hub_ip`.
+# Default: when `hub_ip` is 0.0.0.0 or ::, use `socket.gethostname()`,
+# otherwise use `hub_ip`.
#
-# Note: Some spawners or proxy implementations might not support hostnames.
-# Check your spawner or proxy documentation to see if they have extra
-# requirements.
+# Note: Some spawners or proxy implementations might not support hostnames. Check your
+# spawner or proxy documentation to see if they have extra requirements.
#
-# .. versionadded:: 0.8
+# .. versionadded:: 0.8
# Default: ''
# c.JupyterHub.hub_connect_ip = ''
@@ -346,39 +453,59 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
## The ip address for the Hub process to *bind* to.
#
-# By default, the hub listens on localhost only. This address must be accessible
-# from the proxy and user servers. You may need to set this to a public ip or ''
-# for all interfaces if the proxy or user servers are in containers or on a
-# different host.
+# By default, the hub listens on localhost only. This address must be accessible from
+# the proxy and user servers. You may need to set this to a public ip or '' for all
+# interfaces if the proxy or user servers are in containers or on a different host.
#
-# See `hub_connect_ip` for cases where the bind and connect address should
-# differ, or `hub_bind_url` for setting the full bind URL.
+# See `hub_connect_ip` for cases where the bind and connect address should differ,
+# or `hub_bind_url` for setting the full bind URL.
# Default: '127.0.0.1'
# c.JupyterHub.hub_ip = '127.0.0.1'
## The internal port for the Hub process.
#
-# This is the internal port of the hub itself. It should never be accessed
-# directly. See JupyterHub.port for the public port to use when accessing
-# jupyterhub. It is rare that this port should be set except in cases of port
-# conflict.
+# This is the internal port of the hub itself. It should never be accessed directly.
+# See JupyterHub.port for the public port to use when accessing jupyterhub.
+# It is rare that this port should be set except in cases of port conflict.
#
-# See also `hub_ip` for the ip and `hub_bind_url` for setting the full bind URL.
+# See also `hub_ip` for the ip and `hub_bind_url` for setting the full
+# bind URL.
# Default: 8081
# c.JupyterHub.hub_port = 8081
+## The routing prefix for the Hub itself.
+#
+# Override to send only a subset of traffic to the Hub. Default is to use the
+# Hub as the default route for all requests.
+#
+# This is necessary for normal jupyterhub operation, as the Hub must receive
+# requests for e.g. `/user/:name` when the user's server is not running.
+#
+# However, some deployments using only the JupyterHub API may want to handle
+# these events themselves, in which case they can register their own default
+# target with the proxy and set e.g. `hub_routespec = /hub/` to serve only the
+# hub's own pages, or even `/hub/api/` for api-only operation.
+#
+# Note: hub_routespec must include the base_url, if any.
+#
+# .. versionadded:: 1.4
+# Default: '/'
+# c.JupyterHub.hub_routespec = '/'
+
## Trigger implicit spawns after this many seconds.
#
-# When a user visits a URL for a server that's not running, they are shown a
-# page indicating that the requested server is not running with a button to
-# spawn the server.
+# When a user visits a URL for a server that's not running,
+# they are shown a page indicating that the requested server
+# is not running with a button to spawn the server.
#
-# Setting this to a positive value will redirect the user after this many
-# seconds, effectively clicking this button automatically for the users,
-# automatically beginning the spawn process.
+# Setting this to a positive value will redirect the user
+# after this many seconds, effectively clicking this button
+# automatically for the users,
+# automatically beginning the spawn process.
#
-# Warning: this can result in errors and surprising behavior when sharing access
-# URLs to actual servers, since the wrong server is likely to be started.
+# Warning: this can result in errors and surprising behavior
+# when sharing access URLs to actual servers,
+# since the wrong server is likely to be started.
# Default: 0
# c.JupyterHub.implicit_spawn_seconds = 0
@@ -398,29 +525,30 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: 10
# c.JupyterHub.init_spawners_timeout = 10
-## The location to store certificates automatically created by JupyterHub.
+## The location to store certificates automatically created by
+# JupyterHub.
#
-# Use with internal_ssl
+# Use with internal_ssl
# Default: 'internal-ssl'
# c.JupyterHub.internal_certs_location = 'internal-ssl'
## Enable SSL for all internal communication
#
-# This enables end-to-end encryption between all JupyterHub components.
-# JupyterHub will automatically create the necessary certificate authority and
-# sign notebook certificates as they're created.
+# This enables end-to-end encryption between all JupyterHub components.
+# JupyterHub will automatically create the necessary certificate
+# authority and sign notebook certificates as they're created.
# Default: False
# c.JupyterHub.internal_ssl = False
-## The public facing ip of the whole JupyterHub application (specifically
-# referred to as the proxy).
+## The public facing ip of the whole JupyterHub application
+# (specifically referred to as the proxy).
#
-# This is the address on which the proxy will listen. The default is to listen
-# on all interfaces. This is the only address through which JupyterHub should be
-# accessed by users.
+# This is the address on which the proxy will listen. The default is to
+# listen on all interfaces. This is the only address through which JupyterHub
+# should be accessed by users.
#
-# .. deprecated: 0.9
-# Use JupyterHub.bind_url
+# .. deprecated: 0.9
+# Use JupyterHub.bind_url
# Default: ''
# c.JupyterHub.ip = ''
@@ -434,14 +562,36 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
## Dict of 'group': ['usernames'] to load at startup.
#
-# This strictly *adds* groups and users to groups.
+# This strictly *adds* groups and users to groups.
#
-# Loading one set of groups, then starting JupyterHub again with a different set
-# will not remove users or groups from previous launches. That must be done
-# through the API.
+# Loading one set of groups, then starting JupyterHub again with a different
+# set will not remove users or groups from previous launches.
+# That must be done through the API.
# Default: {}
# c.JupyterHub.load_groups = {}
+## List of predefined role dictionaries to load at startup.
+#
+# For instance::
+#
+# load_roles = [
+# {
+# 'name': 'teacher',
+# 'description': 'Access to users' information and group membership',
+# 'scopes': ['users', 'groups'],
+# 'users': ['cyclops', 'gandalf'],
+# 'services': [],
+# 'groups': []
+# }
+# ]
+#
+# All keys apart from 'name' are optional.
+# See all the available scopes in the JupyterHub REST API documentation.
+#
+# Default roles are defined in roles.py.
+# Default: []
+# c.JupyterHub.load_roles = []
+
## The date format used by logging formatters for %(asctime)s
# See also: Application.log_datefmt
# c.JupyterHub.log_datefmt = '%Y-%m-%d %H:%M:%S'
@@ -454,6 +604,10 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# See also: Application.log_level
# c.JupyterHub.log_level = 30
+##
+# See also: Application.logging_config
+# c.JupyterHub.logging_config = {}
+
## Specify path to a logo image to override the Jupyter logo in the banner.
# Default: ''
# c.JupyterHub.logo_file = ''
@@ -464,20 +618,62 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Setting this can limit the total resources a user can consume.
#
# If set to 0, no limit is enforced.
+#
+# Can be an integer or a callable/awaitable based on the handler object:
+#
+# ::
+#
+# def named_server_limit_per_user_fn(handler):
+# user = handler.current_user
+# if user and user.admin:
+# return 0
+# return 5
+#
+# c.JupyterHub.named_server_limit_per_user = named_server_limit_per_user_fn
# Default: 0
# c.JupyterHub.named_server_limit_per_user = 0
-## File to write PID Useful for daemonizing JupyterHub.
+## Expiry (in seconds) of OAuth access tokens.
+#
+# The default is to expire when the cookie storing them expires,
+# according to `cookie_max_age_days` config.
+#
+# These are the tokens stored in cookies when you visit
+# a single-user server or service.
+# When they expire, you must re-authenticate with the Hub,
+# even if your Hub authentication is still valid.
+# If your Hub authentication is valid,
+# logging in may be a transparent redirect as you refresh the page.
+#
+# This does not affect JupyterHub API tokens in general,
+# which do not expire by default.
+# Only tokens issued during the oauth flow
+# accessing services and single-user servers are affected.
+#
+# .. versionadded:: 1.4
+# OAuth token expires_in was not previously configurable.
+# .. versionchanged:: 1.4
+# Default now uses cookie_max_age_days so that oauth tokens
+# which are generally stored in cookies,
+# expire when the cookies storing them expire.
+# Previously, it was one hour.
+# Default: 0
+# c.JupyterHub.oauth_token_expires_in = 0
+
+## File to write PID
+# Useful for daemonizing JupyterHub.
# Default: ''
# c.JupyterHub.pid_file = ''
+c.ConfigurableHTTPProxy.pid_file = "/run/jupyterhub-proxy.pid"
## The public facing port of the proxy.
#
-# This is the port on which the proxy will listen. This is the only port through
-# which JupyterHub should be accessed by users.
+# This is the port on which the proxy will listen.
+# This is the only port through which JupyterHub
+# should be accessed by users.
#
-# .. deprecated: 0.9
-# Use JupyterHub.bind_url
+# .. deprecated: 0.9
+# Use JupyterHub.bind_url
# Default: 8000
# c.JupyterHub.port = 8000
@@ -493,9 +689,9 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# Default: ''
# c.JupyterHub.proxy_auth_token = ''
-## Interval (in seconds) at which to check if the proxy is running.
-# Default: 30
-# c.JupyterHub.proxy_check_interval = 30
+## DEPRECATED since version 0.8: Use ConfigurableHTTPProxy.check_running_interval
+# Default: 5
+# c.JupyterHub.proxy_check_interval = 5
## The class to use for configuring the JupyterHub proxy.
#
@@ -517,9 +713,9 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
## Recreate all certificates used within JupyterHub on restart.
#
-# Note: enabling this feature requires restarting all notebook servers.
+# Note: enabling this feature requires restarting all notebook servers.
#
-# Use with internal_ssl
+# Use with internal_ssl
# Default: False
# c.JupyterHub.recreate_internal_certs = False
@@ -538,29 +734,29 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
## Dict of token:servicename to be loaded into the database.
#
-# Allows ahead-of-time generation of API tokens for use by externally managed
-# services.
+# Allows ahead-of-time generation of API tokens for use by externally
+# managed services.
# Default: {}
# c.JupyterHub.service_tokens = {}
## List of service specification dictionaries.
#
-# A service
+# A service
#
-# For instance::
+# For instance::
#
-# services = [
-# {
-# 'name': 'cull_idle',
-# 'command': ['/path/to/cull_idle_servers.py'],
-# },
-# {
-# 'name': 'formgrader',
-# 'url': 'http://127.0.0.1:1234',
-# 'api_token': 'super-secret',
-# 'environment':
-# }
-# ]
+# services = [
+# {
+# 'name': 'cull_idle',
+# 'command': ['/path/to/cull_idle_servers.py'],
+# },
+# {
+# 'name': 'formgrader',
+# 'url': 'http://127.0.0.1:1234',
+# 'api_token': 'super-secret',
+# 'environment':
+# }
+# ]
# Default: []
# c.JupyterHub.services = []
@@ -585,21 +781,25 @@ c.JupyterHub.db_url = 'sqlite:///{{ jupyterhub_venv }}/jupyterhub.sqlite'
# e.g. `c.JupyterHub.spawner_class = 'localprocess'`
#
# Currently installed:
+# - systemd: systemdspawner.SystemdSpawner
+# - systemdspawner: systemdspawner.SystemdSpawner
# - default: jupyterhub.spawner.LocalProcessSpawner
# - localprocess: jupyterhub.spawner.LocalProcessSpawner
# - simple: jupyterhub.spawner.SimpleLocalProcessSpawner
# Default: 'jupyterhub.spawner.LocalProcessSpawner'
+# c.JupyterHub.spawner_class = 'jupyterhub.spawner.LocalProcessSpawner'
c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
+c.SystemdSpawner.dynamic_users = True
## Path to SSL certificate file for the public facing interface of the proxy
#
-# When setting this, you should also set ssl_key
+# When setting this, you should also set ssl_key
# Default: ''
# c.JupyterHub.ssl_cert = ''
## Path to SSL key file for the public facing interface of the proxy
#
-# When setting this, you should also set ssl_cert
+# When setting this, you should also set ssl_cert
# Default: ''
# c.JupyterHub.ssl_key = ''
@@ -618,17 +818,18 @@ c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
## Run single-user servers on subdomains of this host.
#
-# This should be the full `https://hub.domain.tld[:port]`.
+# This should be the full `https://hub.domain.tld[:port]`.
#
-# Provides additional cross-site protections for javascript served by single-
-# user servers.
+# Provides additional cross-site protections for javascript served by
+# single-user servers.
#
-# Requires `.hub.domain.tld` to resolve to the same host as
+# Requires `.hub.domain.tld` to resolve to the same host as
# `hub.domain.tld`.
#
-# In general, this is most easily achieved with wildcard DNS.
+# In general, this is most easily achieved with wildcard DNS.
#
-# When using SSL (i.e. always) this also requires a wildcard SSL certificate.
+# When using SSL (i.e. always) this also requires a wildcard SSL
+# certificate.
# Default: ''
# c.JupyterHub.subdomain_host = ''
@@ -644,54 +845,69 @@ c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
# Default: {}
# c.JupyterHub.tornado_settings = {}
-## Trust user-provided tokens (via JupyterHub.service_tokens) to have good
-# entropy.
+## Trust user-provided tokens (via JupyterHub.service_tokens)
+# to have good entropy.
#
-# If you are not inserting additional tokens via configuration file, this flag
-# has no effect.
+# If you are not inserting additional tokens via configuration file,
+# this flag has no effect.
#
-# In JupyterHub 0.8, internally generated tokens do not pass through additional
-# hashing because the hashing is costly and does not increase the entropy of
-# already-good UUIDs.
+# In JupyterHub 0.8, internally generated tokens do not
+# pass through additional hashing because the hashing is costly
+# and does not increase the entropy of already-good UUIDs.
#
-# User-provided tokens, on the other hand, are not trusted to have good entropy
-# by default, and are passed through many rounds of hashing to stretch the
-# entropy of the key (i.e. user-provided tokens are treated as passwords instead
-# of random keys). These keys are more costly to check.
+# User-provided tokens, on the other hand, are not trusted to have good entropy by default,
+# and are passed through many rounds of hashing to stretch the entropy of the key
+# (i.e. user-provided tokens are treated as passwords instead of random keys).
+# These keys are more costly to check.
#
-# If your inserted tokens are generated by a good-quality mechanism, e.g.
-# `openssl rand -hex 32`, then you can set this flag to True to reduce the cost
-# of checking authentication tokens.
+# If your inserted tokens are generated by a good-quality mechanism,
+# e.g. `openssl rand -hex 32`, then you can set this flag to True
+# to reduce the cost of checking authentication tokens.
# Default: False
# c.JupyterHub.trust_user_provided_tokens = False
## Names to include in the subject alternative name.
#
-# These names will be used for server name verification. This is useful if
-# JupyterHub is being run behind a reverse proxy or services using ssl are on
-# different hosts.
+# These names will be used for server name verification. This is useful
+# if JupyterHub is being run behind a reverse proxy or services using ssl
+# are on different hosts.
#
-# Use with internal_ssl
+# Use with internal_ssl
# Default: []
# c.JupyterHub.trusted_alt_names = []
## Downstream proxy IP addresses to trust.
#
-# This sets the list of IP addresses that are trusted and skipped when
-# processing the `X-Forwarded-For` header. For example, if an external proxy is
-# used for TLS termination, its IP address should be added to this list to
-# ensure the correct client IP addresses are recorded in the logs instead of the
-# proxy server's IP address.
+# This sets the list of IP addresses that are trusted and skipped when processing
+# the `X-Forwarded-For` header. For example, if an external proxy is used for TLS
+# termination, its IP address should be added to this list to ensure the correct
+# client IP addresses are recorded in the logs instead of the proxy server's IP
+# address.
# Default: []
# c.JupyterHub.trusted_downstream_ips = []
## Upgrade the database automatically on start.
#
-# Only safe if database is regularly backed up. Only SQLite databases will be
-# backed up to a local file automatically.
+# Only safe if database is regularly backed up.
+# Only SQLite databases will be backed up to a local file automatically.
# Default: False
# c.JupyterHub.upgrade_db = False
+## Return 503 rather than 424 when request comes in for a non-running server.
+#
+# Prior to JupyterHub 2.0, we returned a 503 when any request came in for a user
+# server that was currently not running. By default, JupyterHub 2.0 will return
+# a 424 - this makes operational metric dashboards more useful.
+#
+# JupyterLab < 3.2 expected the 503 to know if the user server is no longer
+# running, and prompted the user to start their server. Set this config to true
+# to retain the old behavior, so JupyterLab < 3.2 can continue to show the
+# appropriate UI when the user server is stopped.
+#
+# This option will be removed in a future release.
+# Default: False
+# c.JupyterHub.use_legacy_stopped_server_status_code = False
+
## Callable to affect behavior of /user-redirect/
#
# Receives 4 parameters: 1. path - URL path that was provided after /user-
@@ -709,13 +925,17 @@ c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
#------------------------------------------------------------------------------
## Base class for spawning single-user notebook servers.
#
-# Subclass this, and override the following methods:
+# Subclass this, and override the following methods:
#
-# - load_state - get_state - start - stop - poll
+# - load_state
+# - get_state
+# - start
+# - stop
+# - poll
#
-# As JupyterHub supports multiple users, an instance of the Spawner subclass is
-# created for each user. If there are 20 JupyterHub users, there will be 20
-# instances of the subclass.
+# As JupyterHub supports multiple users, an instance of the Spawner subclass
+# is created for each user. If there are 20 JupyterHub users, there will be 20
+# instances of the subclass.
## Extra arguments to be passed to the single-user server.
#
@@ -862,12 +1082,32 @@ c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
# Default: 30
# c.Spawner.http_timeout = 30
+## The URL the single-user server should connect to the Hub.
+#
+# If the Hub URL set in your JupyterHub config is not reachable from spawned
+# notebooks, you can set differnt URL by this config.
+#
+# Is None if you don't need to change the URL.
+# Default: None
+# c.Spawner.hub_connect_url = None
+
## The IP address (or hostname) the single-user server should listen on.
#
+# Usually either '127.0.0.1' (default) or '0.0.0.0'.
+#
# The JupyterHub proxy implementation should be able to send packets to this
# interface.
-# Default: ''
-# c.Spawner.ip = ''
+#
+# Subclasses which launch remotely or in containers should override the default
+# to '0.0.0.0'.
+#
+# .. versionchanged:: 2.0
+# Default changed to '127.0.0.1', from ''.
+# In most cases, this does not result in a change in behavior,
+# as '' was interpreted as 'unspecified',
+# which used the subprocesses' own default, itself usually '127.0.0.1'.
+# Default: '127.0.0.1'
+# c.Spawner.ip = '127.0.0.1'
## Minimum number of bytes a single-user notebook server is guaranteed to have
# available.
@@ -918,6 +1158,35 @@ c.JupyterHub.spawner_class = 'systemdspawner.SystemdSpawner'
# Default: ''
# c.Spawner.notebook_dir = ''
+## Allowed scopes for oauth tokens issued by this server's oauth client.
+#
+# This sets the maximum and default scopes
+# assigned to oauth tokens issued by a single-user server's
+# oauth client (i.e. tokens stored in browsers after authenticating with the server),
+# defining what actions the server can take on behalf of logged-in users.
+#
+# Default is an empty list, meaning minimal permissions to identify users,
+# no actions can be taken on their behalf.
+#
+# If callable, will be called with the Spawner as a single argument.
+# Callables may be async.
+# Default: traitlets.Undefined
+# c.Spawner.oauth_client_allowed_scopes = traitlets.Undefined
+
+## Allowed roles for oauth tokens.
+#
+# Deprecated in 3.0: use oauth_client_allowed_scopes
+#
+# This sets the maximum and default roles
+# assigned to oauth tokens issued by a single-user server's
+# oauth client (i.e. tokens stored in browsers after authenticating with the server),
+# defining what actions the server can take on behalf of logged-in users.
+#
+# Default is an empty list, meaning minimal permissions to identify users,
+# no actions can be taken on their behalf.
+# Default: traitlets.Undefined
+# c.Spawner.oauth_roles = traitlets.Undefined
+
## An HTML form for options a user can specify on launching their server.
#
# The surrounding `