Skip to content

Commit c0ba66d

Browse files
committed
Remove redundant tags and default "become: no".
1 parent 147ec8c commit c0ba66d

File tree

5 files changed

+1
-17
lines changed

5 files changed

+1
-17
lines changed

icpc-wf/ansible/domserver.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
dest: "{{DJ_DIR}}/webapp/.env.local"
5050

5151
- name: install contest images
52-
become: no
53-
tags: sync
5452
synchronize:
5553
src: files/domjudge-public/
5654
dest: "{{DJ_DIR}}/webapp/public"

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# These tasks configure clusterssh
33

44
- name: install clusterssh package
5-
tags: packages
65
apt:
76
state: present
87
pkg:

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515
register: git_working_copy
1616

1717
- name: Check composer dependencies present
18+
become: no
1819
local_action: stat path=files/lib/vendor
1920
register: libvendor
20-
become: no
2121

2222
- name: Copy in composer dependencies (if they exist locally)
23-
become: no
24-
tags: sync
2523
synchronize:
2624
src: files/lib/vendor/
2725
dest: "{{DJ_DIR}}/lib/vendor/"

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
when: "'failed' in db_status.stdout"
2626

2727
- name: install required packages
28-
tags: packages
2928
apt:
3029
state: present
3130
pkg:

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,20 @@
22
# These tasks install PHPStorm
33

44
- name: Copy in PHPStorm
5-
become: no
6-
tags: sync
75
synchronize:
86
src: PhpStorm-{{ PHPSTORM_FULL_VERSION }}
97
dest: "/phpstorm"
108
owner: no
119
use_ssh_args: true
1210

1311
- name: Copy in PHPStorm config
14-
become: no
15-
tags: sync
1612
synchronize:
1713
src: PhpStorm{{ PHPSTORM_VERSION }}
1814
dest: "/home/domjudge/.config/JetBrains"
1915
owner: no
2016
use_ssh_args: true
2117

2218
- name: Copy in PHPStorm jdbc drivers
23-
become: no
24-
tags: sync
2519
synchronize:
2620
src: jdbc-drivers
2721
dest: "/home/domjudge/.config/JetBrains/PhpStorm{{ PHPSTORM_VERSION }}/"
@@ -44,8 +38,6 @@
4438
mode: '0755'
4539

4640
- name: Copy in PHPStorm local share
47-
become: no
48-
tags: sync
4941
synchronize:
5042
src: PhpStorm{{ PHPSTORM_VERSION }}-local-share/
5143
dest: "/home/domjudge/.local/share/JetBrains/PhpStorm{{ PHPSTORM_VERSION }}"
@@ -61,8 +53,6 @@
6153
group: domjudge
6254

6355
- name: Copy in PHPStorm settings for repo
64-
become: no
65-
tags: sync
6656
synchronize:
6757
src: .idea
6858
dest: "{{DJ_DIR}}"

0 commit comments

Comments
 (0)