Compare commits

..

2 Commits

Author SHA1 Message Date
tom c690fa8508 suppression site apache par defaut et ajout dep perl 2022-06-20 09:08:42 +02:00
tom 32f11f16d1 modif opac et pro url in systempreferences 2022-05-09 15:39:36 +02:00
3 changed files with 23 additions and 0 deletions
+6
View File
@@ -23,6 +23,12 @@
- apache-shared-opac-plack.conf
notify: reload apache
- name: disable default site
file:
path: "/etc/apache2/sites-enabled/000-default.conf"
state: "absent"
notify: reload apache
- name: activate required modules
apache2_module:
state: present
+15
View File
@@ -133,6 +133,21 @@
- "{{ koha_install_dir }}/var/log"
- "{{ koha_install_dir }}/var/run"
- name: set systempreference url
tags: wip
community.mysql.mysql_query:
login_db: "{{ koha_mariadb_db }}"
login_password: "{{ koha_mariadb_password }}"
login_user: "{{ koha_mariadb_user }}"
login_host: "{{ koha_mariadb_server }}"
query: UPDATE systempreferences set value = %(value)s WHERE variable=%(variable)s
named_args:
value: "{{ item.value }}"
variable: "{{ item.variable }}"
loop:
- { variable: "OPACBaseURL", value: "https://{{ koha_opac_hostname }}" }
- { variable: "staffClientBaseURL", value: "https://{{ koha_intranet_hostname }}" }
# cronjob
# # zebra
# traduction
+2
View File
@@ -4,4 +4,6 @@
state: present
name:
- git
- python3-pymysql
- librest-client-perl