Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 0c8d511

Browse files
committed
Merge branch 'ansible12' into ansible12-PR-devel-2.x
2 parents 54f209c + 99af795 commit 0c8d511

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

roles/debian/ansible/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
# ansible is reserved, so we use ce_ansible
23
ce_ansible:
34
# These are usually set in the _init role but can be overridden here.
45
venv_path: "{{ _venv_path }}"

roles/debian/python_pip_packages/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ python_pip_packages:
33
# These are usually set in the _init role but can be overridden here.
44
venv_path: "{{ _venv_path }}"
55
venv_command: "{{ _venv_command }}"
6-
install_username: "{{ _venv_install_username }}"
6+
venv_install_username: "{{ _venv_install_username }}"
77

88
packages: []
99
# - name: pip

roles/debian/python_pip_packages/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
path: "{{ python_pip_packages.venv_path }}"
1313
state: directory
1414
recurse: true
15-
owner: "{{ python_pip_packages.install_username }}"
16-
group: "{{ python_pip_packages.install_username }}"
15+
owner: "{{ python_pip_packages.venv_install_username }}"
16+
group: "{{ python_pip_packages.venv_install_username }}"

0 commit comments

Comments
 (0)