From 87ef96b02910e01f8c798597005956fcff3b1934 Mon Sep 17 00:00:00 2001 From: A Holt Date: Thu, 10 Nov 2022 19:29:05 -0500 Subject: [PATCH 1/2] Create ubuntu-2304.yml --- vars/ubuntu-2304.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vars/ubuntu-2304.yml diff --git a/vars/ubuntu-2304.yml b/vars/ubuntu-2304.yml new file mode 100644 index 000000000..e8150f2e4 --- /dev/null +++ b/vars/ubuntu-2304.yml @@ -0,0 +1,23 @@ +# Every is_ var is initially set to 'False' at the bottom of +# /opt/iiab/iiab/vars/default_vars.yml -- these 'True' lines override that: +is_debuntu: True +is_ubuntu: True # Opposite of is_debian for now +is_ubuntu_2304: True + +proxy: squid +proxy_user: proxy +apache_service: apache2 +apache_user: www-data +apache_conf_dir: apache2/sites-available +apache_log_dir: /var/log/apache2 +apache_log: /var/log/apache2/access.log +smb_service: smbd +nmb_service: nmbd +systemctl_program: /bin/systemctl +mysql_service: mariadb +sshd_package: openssh-server +sshd_service: ssh +php_version: "8.1" +postgresql_version: 14 +systemd_location: /lib/systemd/system +python_ver: "3.10" From 56457b9829107bc7fe81f1ab035424db7e519f00 Mon Sep 17 00:00:00 2001 From: A Holt Date: Thu, 10 Nov 2022 19:57:05 -0500 Subject: [PATCH 2/2] /library/www/nextcloud initial footprint: 507 -> 519MB --- roles/nextcloud/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nextcloud/tasks/install.yml b/roles/nextcloud/tasks/install.yml index 409c8dbf4..1d3e82257 100644 --- a/roles/nextcloud/tasks/install.yml +++ b/roles/nextcloud/tasks/install.yml @@ -92,7 +92,7 @@ state: directory path: "{{ nextcloud_root_dir }}" # /library/www/nextcloud -- name: Unarchive {{ nextcloud_dl_url }} (~138 MB) to {{ nextcloud_root_dir }} (~507 MB initially, 531+ MB later, {{ apache_user }}:{{ apache_user }}) +- name: Unarchive {{ nextcloud_dl_url }} (~138 MB) to {{ nextcloud_root_dir }} (~519 MB initially, {{ apache_user }}:{{ apache_user }}) unarchive: remote_src: yes # Overwrite even if "already exists on the target" src: "{{ nextcloud_dl_url }}"