Skip to content

Commit fda9b6e

Browse files
committed
Install required packages locally
Signed-off-by: Stephen Finucane <[email protected]>
1 parent 9d4ee11 commit fda9b6e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* An appropriate OS has already been installed
1010
* EPEL repositories aren't deployed, they aren't compatible with OpenStack repositories
1111
* The machine running `dev-install` can SSH to the standalone host as either root or a user with passwordless sudo access
12-
* This machine has Ansible installed, and some dependencies like `python3-netaddr`.
12+
* This machine has Ansible installed. Additional dependencies like `python3-netaddr` will be installed automatically.
1313

1414
You need to deploy the right RHEL version depending on which OSP version you want:
1515

playbooks/local_requirements.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@
77
roles:
88
- operators
99
- rhsm
10+
- hosts: localhost
11+
connection: local
12+
become: true
13+
tasks:
14+
- name: Install packages
15+
ansible.builtin.package:
16+
name:
17+
- python3-jmespath
18+
- python3-netaddr
19+
state: installed

0 commit comments

Comments
 (0)