Skip to content

Commit a8fdabb

Browse files
committed
bootlinux: Replace the term "on the server side"
The usual Asible-ese is "on the control node". Signed-off-by: Chuck Lever <[email protected]>
1 parent 8ce7736 commit a8fdabb

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

playbooks/roles/bootlinux/tasks/main.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
when:
119119
- not bootlinux_9p|bool
120120

121-
- name: git clone {{ target_linux_tree }} on the host side
121+
- name: git clone {{ target_linux_tree }} on the control node
122122
git:
123123
repo: "{{ target_linux_git }}"
124124
dest: "{{ bootlinux_9p_host_path }}"
@@ -148,7 +148,7 @@
148148
- not bootlinux_9p|bool
149149
- target_linux_extra_patch is defined
150150

151-
- name: Copy kernel delta if requested on the host side
151+
- name: Copy kernel delta if requested on the control node
152152
template:
153153
src: "{{ target_linux_extra_patch }}"
154154
dest: "{{ bootlinux_9p_host_path }}/{{ target_linux_extra_patch }}"
@@ -169,7 +169,7 @@
169169
- not bootlinux_9p|bool
170170
- target_linux_extra_patch is defined
171171

172-
- name: Apply kernel delta if requested on the host side
172+
- name: Apply kernel delta if requested on the control node
173173
command: "git am {{ target_linux_extra_patch }}"
174174
args:
175175
chdir: "{{ bootlinux_9p_host_path }}"
@@ -211,7 +211,7 @@
211211
- target_linux_apply_patch_message_id | length > 0
212212
- bootlinux_b4_am_this_host|bool
213213

214-
- name: Apply message patch set if requested on the host side
214+
- name: Apply message patch set if requested on the control node
215215
shell: b4 am -o - {{target_linux_apply_patch_message_id}} | git am
216216
args:
217217
chdir: "{{ bootlinux_9p_host_path }}"
@@ -324,7 +324,7 @@
324324
when:
325325
- not bootlinux_9p|bool
326326

327-
- name: Copy configuration for Linux {{ target_linux_tree }} on the host side
327+
- name: Copy configuration for Linux {{ target_linux_tree }} on the control node
328328
template:
329329
src: "{{ linux_config }}"
330330
dest: "{{ bootlinux_9p_host_path }}/.config"
@@ -342,7 +342,7 @@
342342
- not bootlinux_9p|bool
343343
- target_linux_localversion is defined and target_linux_localversion != ""
344344

345-
- name: Set kernel localversion if requested on the host side
345+
- name: Set kernel localversion if requested on the control node
346346
shell: "echo {{ target_linux_localversion }} > {{ bootlinux_9p_host_path }}/localversion"
347347
tags: [ 'linux', 'git', 'config' ]
348348
when:
@@ -365,7 +365,7 @@
365365
when:
366366
- not bootlinux_9p|bool
367367

368-
- name: Configure Linux {{ target_linux_tree }} on the host side
368+
- name: Configure Linux {{ target_linux_tree }} on the control node
369369
shell: |
370370
set -o pipefail
371371
yes "" | make oldconfig
@@ -419,7 +419,7 @@
419419
- not bootlinux_9p|bool
420420
- snaik_oil_file.stat.exists
421421

422-
- name: Get nproc on the host side
422+
- name: Get nproc on the control node
423423
command: "{{ num_jobs }}"
424424
tags: [ 'linux', 'build-linux', 'configure', 'cxl-build' ]
425425
register: nproc_9p
@@ -450,7 +450,7 @@
450450
run_once: true
451451
delegate_to: localhost
452452

453-
- name: Build {{ target_linux_tree }} {{ target_user_kernelrelease }} on the host side using {{ nproc_9p.stdout }} threads
453+
- name: Build {{ target_linux_tree }} {{ target_user_kernelrelease }} on the control node using {{ nproc_9p.stdout }} threads
454454
make:
455455
jobs: "{{ nproc_9p.stdout }}"
456456
chdir: "{{ bootlinux_9p_host_path }}"
@@ -463,7 +463,7 @@
463463
run_once: true
464464
delegate_to: localhost
465465

466-
- name: Build {{ target_linux_tree }} {{ target_user_kernelrelease }} on the host side using {{ nproc_9p.stdout }} threads
466+
- name: Build {{ target_linux_tree }} {{ target_user_kernelrelease }} on the control node using {{ nproc_9p.stdout }} threads
467467
make:
468468
jobs: "{{ nproc_9p.stdout }}"
469469
chdir: "{{ bootlinux_9p_host_path }}"
@@ -474,7 +474,7 @@
474474
run_once: true
475475
delegate_to: localhost
476476

477-
- name: Build {{ target_linux_tree }} cxl_test on the host side using {{ nproc_9p.stdout }} threads
477+
- name: Build {{ target_linux_tree }} cxl_test on the control node using {{ nproc_9p.stdout }} threads
478478
make:
479479
jobs: "{{ nproc_9p.stdout }}"
480480
chdir: "{{ bootlinux_9p_host_path }}"

0 commit comments

Comments
 (0)