Compare commits

...

2 Commits

3 changed files with 23 additions and 0 deletions

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

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

View File

@@ -4,4 +4,6 @@
state: present
name:
- git
- python3-pymysql
- librest-client-perl