Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Ensure /etc/ibm directory exists
Browse files Browse the repository at this point in the history
  • Loading branch information
tgooding committed Jan 12, 2022
1 parent 4fda566 commit b186e15
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bb/ansible/bbserverIPlist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@

- hosts: compute server
tasks:
- name: Create /etc/ibm directory if it does not exist
file:
path: /etc/ibm
state: directory
mode: '0755'
owner: root
group: root

- name: Copy server ip list to compute/server nodes
copy:
src: /tmp/serverlist
Expand Down
8 changes: 8 additions & 0 deletions bb/ansible/nodelist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@

- hosts: compute
tasks:
- name: Create /etc/ibm directory if it does not exist
file:
path: /etc/ibm
state: directory
mode: '0755'
owner: root
group: root

- name: Copy nodelist to compute nodes
copy:
src: /tmp/nodelist
Expand Down

0 comments on commit b186e15

Please sign in to comment.