File tree 2 files changed +3
-3
lines changed
provision-contest/ansible/roles/judgedaemon/tasks
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ set -euxo pipefail
5
5
# shellcheck disable=SC2044
6
6
for book in $( find ./ -maxdepth 1 -name " *.yml" ) ; do
7
7
if [ " $book " != " ./handlers.yml" ]; then
8
- ansible-lint " $book " -x braces,line-length
8
+ ansible-lint " $book " -x ' braces,yaml[ line-length] '
9
9
fi
10
10
done
11
11
# shellcheck disable=SC2044
12
12
for dir in $( find ./roles -maxdepth 1 -type d) ; do
13
- ansible-lint " $dir " -x braces,line-length
13
+ ansible-lint " $dir " -x ' braces,yaml[ line-length] '
14
14
done
Original file line number Diff line number Diff line change 31
31
32
32
- name : Pre-generate the kernel flags for ansible usage
33
33
set_fact :
34
- procline : " cgroup_enable=memory swapaccount=1 isolcpus={{ cpucore| join(',') }}"
34
+ procline : " cgroup_enable=memory swapaccount=1 isolcpus={{ cpucore | join(',') }}"
35
35
36
36
- name : add cgroup kernel parameters
37
37
lineinfile :
You can’t perform that action at this time.
0 commit comments