Skip to content

Commit

Permalink
[skip travis] updates to last commit
Browse files Browse the repository at this point in the history
Signed-off-by: Charlie Mordant <cmordant1@gmail.com>
  • Loading branch information
Tcharl committed Dec 19, 2023
1 parent b0aa7d8 commit a4f22ca
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ system_user_default_home: "/"

# Ipa stuff
idm_group: 'ipaservers' # do not change: convention from the ip roles
ipapython_version: 4.9.12 # to remove after ipa update
company_domain: "osgiliath.test" # That server's hostname will be should ipa."{{ company_domain }}"
company_realm_password: '123ADMin'
company_ad_password: '123ADmPass'
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ python = ">3.10"
ansible = "^7.5.0"
jmespath = "^1.0.1"
netaddr = "^0.8.0"
ipapython = "^4.10.2"

[tool.poetry.group.dev.dependencies]
ansible-compat = "*"
Expand Down
3 changes: 3 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
# tasks file for ansible-users

- name: Prereq
ansible.builtin.include_tasks: prereq.yml

- name: Requirements
ansible.builtin.include_tasks: requirements.yml
when:
Expand Down
11 changes: 11 additions & 0 deletions tasks/prereq.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---

- name: Prereq | install needed package
ansible.builtin.package:
name: python3-pip
become: True

- name: Prereq | install needed package
ansible.builtin.pip:
name: ipapython
version: ipapython_version | default(Omit)

0 comments on commit a4f22ca

Please sign in to comment.