From ea9f7b24f6fa5a654d4470e887be501368a13383 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 6 Nov 2021 15:30:28 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e85aa730..fc506e97e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ You can build your own tiny, affordable server (an offline digital library) for 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](http://wiki.laptop.org/go/IIAB/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](http://wiki.laptop.org/go/IIAB/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](http://wiki.laptop.org/go/IIAB/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)!* From 15da2784d6aa2b5aca682b406a6a697c7821c322 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 6 Nov 2021 16:45:04 -0400 Subject: [PATCH 2/2] scripts/ansible: TEMPORARY support for RasPiOS Buster's Python 3.7 --- scripts/ansible | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/ansible b/scripts/ansible index 2baf575fc..445b24e04 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -172,7 +172,11 @@ $APT_PATH/apt -y install python3-pip # https://stackoverflow.com/questions/9510474/removing-pips-cache/61762308#61762308 pip config set global.cache-dir false echo -e "\n\n'pip3 install --upgrade ansible-core' will now run:\n" -pip3 install --upgrade ansible-core +if grep -qr buster /etc/apt; then + pip3 install --upgrade ansible-core==2.11.6 # TEMPORARY support for RasPiOS Buster's Python 3.7 +else + pip3 install --upgrade ansible-core # ansible-core 2.12 (ETA 2021-11-08) requires Python >= 3.8 +fi # (Re)running collection installs appears safe, with --force-with-deps to force # upgrade of collection and dependencies it pulls in. Note Ansible may support