Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
42d9936b
Commit
42d9936b
authored
Dec 18, 2013
by
James Tanner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ansible-galaxy python dependencies
parent
764c6f74
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
3 deletions
+6
-3
bin/ansible-galaxy
+0
-0
packaging/debian/README.md
+1
-1
packaging/debian/control
+1
-1
packaging/rpm/ansible.spec
+2
-0
setup.py
+2
-1
No files found.
bin/ansible-galaxy
0 → 100755
View file @
42d9936b
This diff is collapsed.
Click to expand it.
packaging/debian/README.md
View file @
42d9936b
...
...
@@ -3,7 +3,7 @@ Ansible Debian Package
To create an Ansible DEB package:
sudo apt-get install python-paramiko python-yaml python-jinja2
sudo apt-get install python-paramiko python-yaml python-jinja2
python-httplib2
sudo apt-get install cdbs debhelper dpkg-dev git-core reprepro python-support fakeroot
git clone git://github.com/ansible/ansible.git
cd ansible
...
...
packaging/debian/control
View file @
42d9936b
...
...
@@ -8,6 +8,6 @@ Homepage: http://ansible.github.com/
Package: ansible
Architecture: all
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko, sshpass
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko,
python-httplib2,
sshpass
Description: Ansible Application
Ansible is a extra-simple tool/API for doing 'parallel remote things' over SSH executing commands, running "modules", or executing larger 'playbooks' that can serve as a configuration management or deployment system.
packaging/rpm/ansible.spec
View file @
42d9936b
...
...
@@ -25,6 +25,7 @@ Requires: python26-PyYAML
Requires: python26-paramiko
Requires: python26-jinja2
Requires: python26-keyczar
Requires: python26-httplib2
%else
BuildRequires: python2-devel
...
...
@@ -32,6 +33,7 @@ Requires: PyYAML
Requires: python-paramiko
Requires: python-jinja2
Requires: python-keyczar
Requires: python-httplib2
%endif
Requires: sshpass
...
...
setup.py
View file @
42d9936b
...
...
@@ -22,7 +22,7 @@ setup(name='ansible',
author_email
=
'michael@ansibleworks.com'
,
url
=
'http://ansibleworks.com/'
,
license
=
'GPLv3'
,
install_requires
=
[
'paramiko'
,
'jinja2'
,
"PyYAML"
],
install_requires
=
[
'paramiko'
,
'jinja2'
,
"PyYAML"
,
"httplib2"
],
package_dir
=
{
'ansible'
:
'lib/ansible'
},
packages
=
[
'ansible'
,
...
...
@@ -42,6 +42,7 @@ setup(name='ansible',
'bin/ansible'
,
'bin/ansible-playbook'
,
'bin/ansible-pull'
,
'bin/ansible-galaxy'
,
'bin/ansible-doc'
],
data_files
=
data_files
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment