Compare commits
2 Commits
54f4ea7674
...
c690fa8508
| Author | SHA1 | Date | |
|---|---|---|---|
| c690fa8508 | |||
| 32f11f16d1 |
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -4,4 +4,6 @@
|
||||
state: present
|
||||
name:
|
||||
- git
|
||||
- python3-pymysql
|
||||
- librest-client-perl
|
||||
|
||||
|
||||
Reference in New Issue
Block a user