mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
commit
768f759dff
15 changed files with 100 additions and 80 deletions
|
@ -28,8 +28,9 @@
|
|||
# when: is_rpi and internet_available
|
||||
|
||||
- name: Upgrade to latest Calibre using .deb's from testing (rpi)
|
||||
#command: scripts/calibre-install-latest-rpi-plus.sh # NEC FOR Calibre 3.27.1 on 2018-07-22 (#948 -> PR #950) THO NOT BOOTABLE IN Zero W (#952). Similar to Calibre 3.24.x & 3.25 in June 2018, which had used calibre-install-packages.sh then Debian's own calibre-install-latest.sh
|
||||
command: scripts/calibre-install-latest-rpi.sh # WORKS for Calibre 3.28 on 2018-07-26 (PR #971). Likewise for Calibre 3.26.x
|
||||
#command: scripts/calibre-install-latest-rpi-plus.sh # WORKS for Calibre 3.27.1 on 2018-07-22 (#948 -> PR #950) THO NOT BOOTABLE IN Zero W (#952). Similar to Calibre 3.24.x & 3.25 in June 2018, which had used calibre-install-packages.sh then Debian's own calibre-install-latest.sh
|
||||
#command: scripts/calibre-install-latest-rpi.sh # WORKS for Calibre 3.28 on 2018-07-26 (PR #971). Likewise for Calibre 3.26.x
|
||||
command: scripts/calibre-install-latest.sh # REQUIRED for Calibre 3.29 on 2018-08-21 (PR #1015), as all above strategies failed (only script that was not attempted: Sid-like calibre-install-unstable.sh). CLARIF: RESULTING microSD's ARE NOT BOOTABLE IN Zero W (#952)
|
||||
when: is_rpi and internet_available
|
||||
|
||||
- name: Upgrade to Calibre testing .deb's - target Ubuntu 16.04 (not rpi and not ubuntu_18)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
- name: Copy css files
|
||||
- name: Copy css files to /library/www/html/common/css
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/css"
|
||||
|
@ -8,7 +8,7 @@
|
|||
with_fileglob:
|
||||
- html/css/*.css
|
||||
|
||||
- name: Copy js files
|
||||
- name: Copy js files to /library/www/html/common/js
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/js"
|
||||
|
@ -18,7 +18,7 @@
|
|||
with_fileglob:
|
||||
- html/js/*.js
|
||||
|
||||
- name: Copy fonts files
|
||||
- name: Copy fonts files to /library/www/html/common/fonts
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/fonts"
|
||||
|
@ -28,7 +28,7 @@
|
|||
with_fileglob:
|
||||
- html/fonts/*
|
||||
|
||||
- name: Copy html files
|
||||
- name: Copy html files to /library/www/html/common/html
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/html"
|
||||
|
@ -38,7 +38,7 @@
|
|||
with_fileglob:
|
||||
- html/html/*
|
||||
|
||||
- name: Copy assets files
|
||||
- name: Copy assets files to /library/www/html/common/assets
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/assets"
|
||||
|
@ -49,7 +49,7 @@
|
|||
- html/assets/*
|
||||
|
||||
# copy all services, even if not permissioned elsewhere
|
||||
- name: Copy services files
|
||||
- name: Copy services files to /library/www/html/common/services
|
||||
copy:
|
||||
src: "{{ item }}"
|
||||
dest: "{{ doc_root }}/common/services"
|
||||
|
@ -59,7 +59,7 @@
|
|||
with_fileglob:
|
||||
- html/services/*
|
||||
|
||||
- name: Create symlink from assets to iiab.ini
|
||||
- name: Create symlink from assets to /etc/iiab/iiab.ini
|
||||
file:
|
||||
src: "/etc/iiab/iiab.ini"
|
||||
dest: "{{ doc_root }}/common/assets/iiab.ini"
|
||||
|
|
|
@ -11,13 +11,14 @@
|
|||
- download
|
||||
when: is_debian
|
||||
|
||||
- name: Debian changed sqlite name (debian-8)
|
||||
- name: Debian changed SQLite name (debian-8)
|
||||
package:
|
||||
name: "php{{ php_version }}-sqlite"
|
||||
when: is_debian and ansible_distribution_major_version == "8"
|
||||
|
||||
- name: Debian changed sqlite name (debian-9)
|
||||
package: name=php{{ php_version }}-sqlite3
|
||||
- name: Debian changed SQLite3 name (debian-9)
|
||||
package:
|
||||
name: "php{{ php_version }}-sqlite3"
|
||||
when: is_debian and ansible_distribution_major_version == "9"
|
||||
|
||||
- name: Install httpd required packages (ubuntu)
|
||||
|
@ -31,7 +32,7 @@
|
|||
- download
|
||||
when: is_ubuntu
|
||||
|
||||
- name: Sqlite3 no longer included in another package in ubuntu18
|
||||
- name: SQLite3 no longer included in another package (ubuntu-18)
|
||||
package:
|
||||
name: php{{ php_version }}-sqlite3
|
||||
when: is_ubuntu_18
|
||||
|
@ -50,11 +51,12 @@
|
|||
- download
|
||||
when: is_redhat
|
||||
|
||||
- name: Remove the default apache2 config file (debuntu)
|
||||
file:
|
||||
path: /etc/apache2/sites-enabled/000-default.conf
|
||||
state: absent
|
||||
when: is_debuntu
|
||||
# MOVED DOWN ~58 LINES
|
||||
#- name: Remove the default apache2 config file (debuntu)
|
||||
# file:
|
||||
# path: /etc/apache2/sites-enabled/000-default.conf
|
||||
# state: absent
|
||||
# when: is_debuntu
|
||||
|
||||
- name: Create httpd config files
|
||||
template:
|
||||
|
@ -65,9 +67,9 @@
|
|||
group: root
|
||||
mode: "{{ item.mode }}"
|
||||
with_items:
|
||||
- { src: '010-iiab.conf.j2' , dest: '/etc/{{ apache_config_dir }}/010-iiab.conf', mode: '0755' }
|
||||
- { src: 'proxy_ajp.conf.j2' , dest: '/etc/{{ apache_config_dir }}/proxy_ajp.conf', mode: '0644' }
|
||||
- { src: 'php.ini.j2' , dest: '/etc/php.ini' , mode: '0644' }
|
||||
- { src: '010-iiab.conf.j2', dest: '/etc/{{ apache_config_dir }}/010-iiab.conf', mode: '0755' }
|
||||
- { src: 'proxy_ajp.conf.j2', dest: '/etc/{{ apache_config_dir }}/proxy_ajp.conf', mode: '0644' }
|
||||
- { src: 'php.ini.j2', dest: '/etc/php.ini', mode: '0644' }
|
||||
|
||||
# remove symlinks for mpm-event, replace with mpm-prefork
|
||||
- name: Remove mpm event links (debuntu)
|
||||
|
@ -100,20 +102,23 @@
|
|||
|
||||
- name: Create symlinks for enabling our site (debuntu)
|
||||
file:
|
||||
path: "/etc/apache2/sites-enabled/{{ item }}"
|
||||
path: "/etc/apache2/sites-enabled/{{ item }}" # Not nec on Raspbian. Is this really still needed elsewhere?
|
||||
src: "/etc/apache2/sites-available/{{ item }}"
|
||||
state: link
|
||||
with_items:
|
||||
- 010-iiab.conf
|
||||
when: is_debuntu
|
||||
|
||||
- name: Remove the default site container (debuntu)
|
||||
- name: Remove apache2 default config files (debuntu)
|
||||
file:
|
||||
dest: /etc/apache2/000-default.conf
|
||||
path: "{{ item }}"
|
||||
state: absent
|
||||
with_items:
|
||||
- /etc/apache2/000-default.conf
|
||||
- /etc/apache2/sites-enabled/000-default.conf
|
||||
when: is_debuntu
|
||||
|
||||
- name: Create http pid dir
|
||||
- name: Create http pid dir /var/run/{{ apache_user }}
|
||||
file:
|
||||
path: "/var/run/{{ apache_user }}"
|
||||
mode: 0755
|
||||
|
@ -126,14 +131,14 @@
|
|||
name: admin
|
||||
state: present
|
||||
|
||||
- name: Add apache user to admin group
|
||||
- name: Add {{ apache_user }} (from variable apache_user) to admin group
|
||||
user:
|
||||
name: "{{ apache_user }}"
|
||||
groups: admin
|
||||
state: present
|
||||
createhome: no
|
||||
|
||||
- name: Create httpd log dir
|
||||
- name: Create httpd log dir /var/log/{{ apache_service }}
|
||||
file:
|
||||
path: "/var/log/{{ apache_service }}"
|
||||
mode: 0755
|
||||
|
@ -180,14 +185,14 @@
|
|||
dest: /usr/bin/iiab-refresh-wiki-docs
|
||||
mode: 0755
|
||||
|
||||
- name: Give apache_user permission for poweroff
|
||||
- name: Give apache_user permission to poweroff
|
||||
template:
|
||||
src: 020_apache_poweroff.j2
|
||||
dest: /etc/sudoers.d/020_apache_poweroff
|
||||
mode: 0755
|
||||
when: allow_apache_sudo
|
||||
|
||||
- name: Remove apache_user permission for poweroff
|
||||
- name: Remove apache_user permission to poweroff
|
||||
file:
|
||||
dest: /etc/sudoers.d/020_apache_poweroff
|
||||
state: absent
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
teamviewer_url: "{{ iiab_download_url }}"
|
||||
teamviewer_rpm_file: teamviewer_10.0.41499.i686.rpm
|
||||
teamviewer_install: True
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
# Thanks to Jerry Vonau (https://github.com/jvonau) who made this critical
|
||||
# breakthrough possible!
|
||||
#
|
||||
# SEE COMMENTS AT THE TOP OF scripts/calibre-install-packages.sh
|
||||
# Might break future updates; you have been warned.
|
||||
# SEE NOTES AT TOP OF scripts/calibre-install-packages.sh
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
# Thanks to Jerry Vonau (https://github.com/jvonau) who made this critical
|
||||
# breakthrough possible!
|
||||
#
|
||||
# SEE COMMENTS AT THE TOP OF scripts/calibre-install-packages.sh
|
||||
# Might break future updates; you have been warned.
|
||||
# SEE NOTES AT TOP OF scripts/calibre-install-packages.sh
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
# Prepares to update to latest from raspbian testing
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Calibre 3.29 requires this approach, to overcome error:
|
||||
#
|
||||
# calibre-bin : Depends: qtbase-abi-5-10-0 but it is not installable
|
||||
# E: Unable to correct problems, you have held broken packages.
|
||||
#
|
||||
# Above error proved insurmountable when trying most all scripts in /opt/iiab/iiab/scripts -- even those that DID solve this error:
|
||||
#
|
||||
# calibre : Depends: python-pyqt5 (>= 5.11.2+dfsg-1+b1)
|
||||
|
||||
# Thanks to Jerry Vonau (https://github.com/jvonau) who made this critical
|
||||
# breakthrough possible!
|
||||
#
|
||||
# SEE COMMENTS AT THE TOP OF scripts/calibre-install-packages.sh
|
||||
# Might break future updates; you have been warned.
|
||||
# SEE NOTES AT TOP OF scripts/calibre-install-packages.sh
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
# Drags in stock desktop dependencies without too much from testing below
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
# http://archive.raspbian.org/raspbian/pool/main/c/calibre/
|
||||
#
|
||||
# Might break future updates; you have been warned.
|
||||
# SEE NOTES AT TOP OF scripts/calibre-install-packages.sh
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
# Prepares to update to latest from unstable
|
||||
|
|
|
@ -380,33 +380,33 @@ munin_enabled: False
|
|||
phpmyadmin_install: False
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# sugar-stats - unmaintained
|
||||
sugar_stats_install: False
|
||||
sugar_stats_enabled: False
|
||||
|
||||
# TeamViewer - unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
# vnStat
|
||||
vnstat_install: True
|
||||
vnstat_enabled: False
|
||||
|
||||
# XOVis - unmaintained
|
||||
xovis_install: False
|
||||
xovis_enabled: False
|
||||
xovis_target_host: "127.0.0.1:5984"
|
||||
xovis_deployment_name: olpc
|
||||
xovis_db_name: xovis
|
||||
xovis_db_user: admin
|
||||
xovis_db_password: admin
|
||||
|
||||
xovis_root: "/opt/xovis"
|
||||
xovis_backup_dir: "/library/users"
|
||||
xovis_chart_heading: "My School: Usage Data Visualization"
|
||||
|
||||
# ================================================================
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# sugar-stats - unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
||||
# XOVis - unmaintained
|
||||
# xovis_install: False
|
||||
# xovis_enabled: False
|
||||
# xovis_target_host: "127.0.0.1:5984"
|
||||
# xovis_deployment_name: olpc
|
||||
# xovis_db_name: xovis
|
||||
# xovis_db_user: admin
|
||||
# xovis_db_password: admin
|
||||
|
||||
# xovis_root: "/opt/xovis"
|
||||
# xovis_backup_dir: "/library/users"
|
||||
# xovis_chart_heading: "My School: Usage Data Visualization"
|
||||
|
||||
# Ajenti - unmaintained
|
||||
# ajenti_install: False
|
||||
# ajenti_enabled: False
|
||||
|
@ -419,9 +419,10 @@ xovis_chart_heading: "My School: Usage Data Visualization"
|
|||
# rachel_doc_root: "{{ doc_root }}/modules"
|
||||
|
||||
# ================================================================
|
||||
# Platforms - turn all off and let <OS>.yml turn on as appropriate
|
||||
|
||||
# wide to narrow
|
||||
# Platforms - turn all off and let /opt/iiab/iiab/vars/<OS>.yml turn on as appropriate
|
||||
|
||||
# Wide to narrow
|
||||
is_debuntu: False
|
||||
is_ubuntu: False
|
||||
is_ubuntu_18: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: True
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: True
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: False
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: False
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: False
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
|
@ -212,13 +212,13 @@ munin_enabled: True
|
|||
phpmyadmin_install: False
|
||||
phpmyadmin_enabled: False
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com)
|
||||
teamviewer_install: False
|
||||
teamviewer_enabled: False
|
||||
|
||||
vnstat_install: True
|
||||
vnstat_enabled: True
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
# teamviewer_enabled: False
|
||||
|
||||
# Unmaintained
|
||||
# sugar_stats_install: False
|
||||
# sugar_stats_enabled: False
|
||||
|
|
Loading…
Reference in a new issue