Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Registreren
Inloggen
ka
/
ansible-role-ansible
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
ansible in own tasks file
master
Markus Katharina Brechtel
6 jaren geleden
bovenliggende
76f38100d9
commit
4f17068645
3 gewijzigde bestanden
met
toevoegingen van 27
en
26 verwijderingen
Zij-aan-zij weergave
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
tasks/ansible.yaml
+3
-1
tasks/main.yml
+18
-25
tasks/setup_Debian.yml
+ 6
- 0
tasks/ansible.yaml
Bestand weergeven
@@ -0,0 +1,6 @@
---
- name: install ansible via pip
pip:
name: ansible
state: latest
+ 3
- 1
tasks/main.yml
Bestand weergeven
@@ -2,9 +2,11 @@
- include_tasks: setup_Debian.yml
#- include_tasks: ara.yml
- include_tasks: ansible.yaml
- include_tasks: connection_plugin_lxc_ssh.yml
#- include_tasks: ara.yml
- include_tasks: ovh_module.yml
+ 18
- 25
tasks/setup_Debian.yml
Bestand weergeven
@@ -2,33 +2,26 @@
- name: install packages
apt:
pkg: "{{item}}"
state: present
with_items:
- python-pip
- ipv6calc
- uuid
- git
- python-jmespath
# ara required_packages:
- gcc
- libffi-dev
- libssl-dev
- libxml2-dev
- libxslt-dev
- python-dev
- python-setuptools
- python-pymysql
#- which
- python-libcloud
- python-netaddr
pkg:
- python-pip
- ipv6calc
- uuid
- git
- python-jmespath
# ara required_packages:
- gcc
- libffi-dev
- libssl-dev
- libxml2-dev
- libxslt-dev
- python-dev
- python-setuptools
- python-pymysql
#- which
- python-libcloud
- python-netaddr
- name: uninstall debian ansible module
apt:
pkg: ansible
state: absent
- name: install ansible via pip
pip:
name: ansible
state: latest
Schrijf
Voorbeeld
Laden…
Annuleren
Opslaan