This website works better with JavaScript.
首頁
探索
說明
註冊
登入
ka
/
ansible-role-ansible
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
ansible in own tasks file
master
Markus Katharina Brechtel
6 年之前
父節點
76f38100d9
當前提交
4f17068645
共有
3 個文件被更改
,包括
27 次插入
和
26 次删除
分割檢視
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
查看文件
@@ -0,0 +1,6 @@
---
- name: install ansible via pip
pip:
name: ansible
state: latest
+ 3
- 1
tasks/main.yml
查看文件
@@ -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
查看文件
@@ -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
Write
Preview
Loading…
取消
儲存