Skip to content

Commit 1399271

Browse files
committed
Change maintainer-install to inplace-install
1 parent d5fd24e commit 1399271

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
# Define here handlers associated to this role.
33

4-
- name: fix permissions on domjudge maintainer-install
5-
shell: make -C {{DJ_DIR}} maintainer-postinstall-permissions
4+
- name: fix permissions on domjudge inplace-install
5+
shell: make -C {{DJ_DIR}} inplace-postinstall-permissions
66

77
- name: restart rsyslog
88
service: name=rsyslog enabled=yes state=restarted

icpc-wf/ansible/roles/domjudge_build/tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
group: domjudge
1010
mode: 0600
1111

12-
- name: run maintainer-conf
12+
- name: run inplace-conf
1313
become: yes
1414
become_user: domjudge
15-
command: make maintainer-conf CONFIGURE_FLAGS='--disable-doc-build --with-baseurl={{DOMSERVER}}/'
15+
command: make inplace-conf CONFIGURE_FLAGS='--disable-doc-build --with-baseurl={{DOMSERVER}}/'
1616
register: dj_configured
1717
args:
1818
chdir: "{{DJ_DIR}}"
@@ -25,10 +25,10 @@
2525
- name: build domjudge
2626
become: yes
2727
become_user: domjudge
28-
command: make maintainer-install
28+
command: make inplace-install
2929
args:
3030
chdir: "{{DJ_DIR}}"
31-
notify: fix permissions on domjudge maintainer-install
31+
notify: fix permissions on domjudge inplace-install
3232
when: (git_working_copy is defined and git_working_copy.changed) or dj_configured.changed or not judgedaemon_binary.stat.exists
3333

3434
- name: copy domjudge-sudoers file

icpc-wf/ansible/roles/domserver/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
template:
66
src: dbpasswords.secret.j2
77
dest: "{{DJ_DIR}}/etc/dbpasswords.secret"
8-
notify: fix permissions on domjudge maintainer-install
8+
notify: fix permissions on domjudge inplace-install
99

1010
- name: install initial_admin_password.secret file
1111
template:
1212
src: initial_admin_password.secret.j2
1313
dest: "{{DJ_DIR}}/etc/initial_admin_password.secret"
14-
notify: fix permissions on domjudge maintainer-install
14+
notify: fix permissions on domjudge inplace-install
1515

1616
# When using replication, the DB will be dropped and recreated on the slave later.
1717
- name: check if the database is configured

0 commit comments

Comments
 (0)