mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 20:22:08 +00:00
Prepare for Ubuntu 21.04 (Hirsute Hippo)
This commit is contained in:
parent
7f80fbd2e3
commit
3ecfa69c82
3 changed files with 33 additions and 0 deletions
|
@ -60,10 +60,14 @@ OS_VER=$OS-$VERSION_ID
|
|||
# 2020-10-21: Debian 11 (Bullseye) not yet supported but adding this line to
|
||||
# its /etc/os-release can help testing this unreleased OS: VERSION_ID="11"
|
||||
|
||||
# 2020-11-14: Ubuntu 21.04 (Hirsute Hippo) not yet supported but this
|
||||
# unreleased OS can help testing.
|
||||
|
||||
case $OS_VER in
|
||||
"debian-10" | \
|
||||
"debian-11" | \
|
||||
"ubuntu-20" | \
|
||||
"ubuntu-21" | \
|
||||
"linuxmint-20" | \
|
||||
"raspbian-10")
|
||||
;;
|
||||
|
|
|
@ -688,6 +688,7 @@ calibreweb_home: "{{ content_base }}/calibre-web" # /library/calibre-web
|
|||
is_debuntu: False # Covers all 4: Ubuntu, Linux Mint, Debian, Raspberry Pi OS (Raspbian)
|
||||
|
||||
is_ubuntu: False # Covers: Ubuntu, Linux Mint
|
||||
is_ubuntu_21: False
|
||||
is_ubuntu_20: False
|
||||
is_ubuntu_19: False
|
||||
is_ubuntu_18: False
|
||||
|
|
28
vars/ubuntu-21.yml
Normal file
28
vars/ubuntu-21.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
is_debuntu: True
|
||||
is_ubuntu: True
|
||||
is_ubuntu_21: True
|
||||
|
||||
# 2019-03-23: These apply if-only-if named_install and/or dhcpd_install are True
|
||||
# (This is quite rare now that vars/default_vars.yml sets dnsmasq_install: True)
|
||||
dns_service: bind9
|
||||
dns_user: bind
|
||||
dhcp_service: isc-dhcp-server
|
||||
|
||||
proxy: squid
|
||||
proxy_user: proxy
|
||||
apache_service: apache2
|
||||
apache_user: www-data
|
||||
apache_conf_dir: apache2/sites-available
|
||||
apache_log_dir: /var/log/apache2
|
||||
smb_service: smbd
|
||||
nmb_service: nmbd
|
||||
systemctl_program: /bin/systemctl
|
||||
# issue raised
|
||||
mysql_service: mariadb
|
||||
apache_log: /var/log/apache2/access.log
|
||||
sshd_package: openssh-server
|
||||
sshd_service: ssh
|
||||
php_version: 7.4
|
||||
# "postgresql_version: 11.2" failed (too detailed for /etc/systemd/system/postgresql-iiab.service on Ubuntu 19.04)
|
||||
postgresql_version: 12
|
||||
systemd_location: /lib/systemd/system
|
Loading…
Reference in a new issue