Skip to content

Commit 9d03d97

Browse files
committed
linux: Replace '127.0.0.1' with 'localhost'
Nit: Using "localhost" is a best practice and is consistent with every other local invocation of anisble-playbook in kdevops. Signed-off-by: Chuck Lever <[email protected]>
1 parent 1b49ded commit 9d03d97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

playbooks/bootlinux-local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- hosts: 127.0.0.1
2+
- hosts: localhost
33
connection: local
44
roles:
55
- role: bootlinux-local

workflows/linux/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ LINUX_HELP_EXTRA :=
9090

9191
PHONY += linux
9292
linux: $(KDEVOPS_NODES)
93-
$(Q)ansible-playbook $(ANSIBLE_VERBOSE) -i \
94-
'127.0.0.1,' $(KDEVOPS_PLAYBOOKS_DIR)/bootlinux-local.yml \
93+
$(Q)ansible-playbook $(ANSIBLE_VERBOSE) \
94+
$(KDEVOPS_PLAYBOOKS_DIR)/bootlinux-local.yml \
9595
--extra-vars="$(BOOTLINUX_ARGS)"
9696
$(Q)ansible-playbook $(ANSIBLE_VERBOSE) -i \
9797
$(KDEVOPS_HOSTFILE) $(KDEVOPS_PLAYBOOKS_DIR)/bootlinux.yml \

0 commit comments

Comments
 (0)