Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
2 changes: 1 addition & 1 deletion docs/roles/debian/ce_deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ _ce_deploy:
ce_deploy:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_deploy.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-deploy settings.
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
key_name: id_rsa.pub # existing users may have a key of a different name
Expand Down
2 changes: 1 addition & 1 deletion docs/roles/debian/ce_provision.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ _ce_provision:
ce_provision:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_provision.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-provision settings.
username: "{{ _ce_provision.username }}"
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/ce_deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ _ce_deploy:
ce_deploy:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_deploy.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-deploy settings.
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
key_name: id_rsa.pub # existing users may have a key of a different name
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/ce_deploy/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ _ce_deploy:
ce_deploy:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_deploy.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-deploy settings.
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
key_name: id_rsa.pub # existing users may have a key of a different name
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/ce_provision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ _ce_provision:
ce_provision:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_provision.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-provision settings.
username: "{{ _ce_provision.username }}"
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/ce_provision/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ _ce_provision:
ce_provision:
# Location of Ansible installation and components.
venv_path: "/home/{{ _ce_provision.username }}/ansible"
venv_command: /usr/bin/python3.11 -m venv
venv_command: /usr/bin/python3 -m venv
# Other ce-provision settings.
username: "{{ _ce_provision.username }}"
new_user: true # set to false if user already exists or is ephemeral, e.g. an LDAP user
Expand Down