Skip to content

Commit 8ce7736

Browse files
committed
bootlinux: Replace the term "client side"
For NFS developers, client side has a particular meaning. The bootlinux role will set up NFS clients on target nodes, but also the NFS, iSCSI, and krb5 servers. So "client side" is confusing. Signed-off-by: Chuck Lever <[email protected]>
1 parent cc719a2 commit 8ce7736

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
@@ -103,7 +103,7 @@
103103
- bootlinux_tree_set_by_cli|bool
104104
- not target_directory_stat.stat.exists
105105

106-
- name: git clone {{ target_linux_tree }} on the client side
106+
- name: git clone {{ target_linux_tree }} on the target nodes
107107
git:
108108
repo: "{{ target_linux_git }}"
109109
dest: "{{ target_linux_dir_path }}"
@@ -136,7 +136,7 @@
136136
run_once: true
137137
delegate_to: localhost
138138

139-
- name: Copy kernel delta if requested on the client side
139+
- name: Copy kernel delta if requested on the target nodes
140140
template:
141141
src: "{{ target_linux_extra_patch }}"
142142
dest: "{{ target_linux_dir_path }}/{{ target_linux_extra_patch }}"
@@ -160,7 +160,7 @@
160160
run_once: true
161161
delegate_to: localhost
162162

163-
- name: Apply kernel delta if requested on the client side
163+
- name: Apply kernel delta if requested on the target nodes
164164
command: "git am {{ target_linux_extra_patch }}"
165165
args:
166166
chdir: "{{ target_linux_dir_path }}"
@@ -200,7 +200,7 @@
200200
when:
201201
- target_linux_apply_patch_message_id is defined
202202

203-
- name: Apply message patch set if requested on the client side
203+
- name: Apply message patch set if requested on the target nodes
204204
shell: b4 am -o - {{target_linux_apply_patch_message_id}} | git am
205205
args:
206206
chdir: "{{ target_linux_dir_path }}"
@@ -313,7 +313,7 @@
313313
when: not config_stat.stat.exists
314314
delegate_to: localhost
315315

316-
- name: Copy configuration for Linux {{ target_linux_tree }} on the client side
316+
- name: Copy configuration for Linux {{ target_linux_tree }} to the target nodes
317317
template:
318318
src: "{{ linux_config }}"
319319
dest: "{{ target_linux_dir_path }}/.config"
@@ -335,7 +335,7 @@
335335
run_once: true
336336
delegate_to: localhost
337337

338-
- name: Set kernel localversion if requested on the client side
338+
- name: Set kernel localversion if requested on the target nodes
339339
shell: "echo {{ target_linux_localversion }} > {{ target_linux_dir_path }}/localversion"
340340
tags: [ 'linux', 'git', 'config' ]
341341
when:
@@ -351,7 +351,7 @@
351351
run_once: true
352352
delegate_to: localhost
353353

354-
- name: Configure Linux {{ target_linux_tree }} on the client side
354+
- name: Configure Linux {{ target_linux_tree }} on the target nodes
355355
shell: |
356356
set -o pipefail
357357
yes "" | make oldconfig
@@ -381,7 +381,7 @@
381381
run_once: true
382382
delegate_to: localhost
383383

384-
- name: Build {{ target_linux_tree }} on the client side
384+
- name: Build {{ target_linux_tree }} on the target nodes
385385
command: "{{ target_linux_make_cmd }}"
386386
register: build
387387
changed_when: "build.rc == 0"
@@ -391,7 +391,7 @@
391391
when:
392392
- not bootlinux_9p|bool
393393

394-
- name: Build {{ target_linux_tree }} cxl_test on the client side
394+
- name: Build {{ target_linux_tree }} cxl_test on the target nodes
395395
command: "{{ target_linux_make_cmd }} M=tools/testing/cxl"
396396
register: build_cxl_test
397397
changed_when: "build_cxl_test.rc == 0"
@@ -603,7 +603,7 @@
603603
tags: [ 'linux', 'git', 'config', 'saved' ]
604604
when: ansible_facts['os_family']|lower == 'redhat'
605605

606-
- name: Install {{ target_linux_tree }} on the client side
606+
- name: Install {{ target_linux_tree }} on the target nodes
607607
become: yes
608608
become_flags: 'su - -c'
609609
become_method: sudo
@@ -614,7 +614,7 @@
614614
chdir: "{{ target_linux_dir_path }}"
615615
tags: [ 'linux', 'install-linux' ]
616616

617-
- name: Install {{ target_linux_tree }} cxl_test on the client side
617+
- name: Install {{ target_linux_tree }} cxl_test on the target nodes
618618
become: yes
619619
become_flags: 'su - -c'
620620
become_method: sudo

0 commit comments

Comments
 (0)