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
5a156d68
Commit
5a156d68
authored
May 01, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #286 from tbielawa/PkgReviewRetagFixes
Pkg review retag fixes
parents
ae3595e9
38c3f28f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
29 deletions
+21
-29
MANIFEST.in
+1
-1
VERSION
+1
-1
docs/man/man1/ansible-playbook.1
+6
-5
docs/man/man1/ansible-playbook.1.asciidoc.in
+1
-1
docs/man/man1/ansible.1
+3
-3
lib/ansible/__init__.py
+1
-1
packaging/rpm/ansible.spec
+7
-16
setup.py
+1
-1
No files found.
MANIFEST.in
View file @
5a156d68
include README.md packaging/rpm/ansible.spec
include README.md packaging/rpm/ansible.spec
COPYING
include examples/hosts
include packaging/distutils/setup.py
recursive-include docs *
...
...
VERSION
View file @
5a156d68
0.3
0.3
.1
docs/man/man1/ansible-playbook.1
View file @
5a156d68
...
...
@@ -2,12 +2,12 @@
.\" Title: ansible-playbook
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 0
4/17
/2012
.\" Date: 0
5/01
/2012
.\" Manual: System administration commands
.\" Source: Ansible 0.
0.2
.\" Source: Ansible 0.
3.1
.\" Language: English
.\"
.TH "ANSIBLE\-PLAYBOOK" "1" "0
4/17/2012" "Ansible 0\&.0\&.2
" "System administration commands"
.TH "ANSIBLE\-PLAYBOOK" "1" "0
5/01/2012" "Ansible 0\&.3\&.1
" "System administration commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
...
...
@@ -42,10 +42,11 @@ ansible\-playbook <filename\&.yml> \&... [options]
The names of one or more YAML format files to run as ansible playbooks\&.
.RE
.SH "OPTIONS"
.
sp
.
PP
\fB\-D\fR, \fB\-\-debug\fR
.
sp
.
RS 4
Print any messages the remote module sends to standard error to the console
.RE
.PP
\fB\-i\fR \fIPATH\fR, \fB\-\-inventory=\fR\fIPATH\fR
.RS 4
...
...
docs/man/man1/ansible-playbook.1.asciidoc.in
View file @
5a156d68
...
...
@@ -34,7 +34,7 @@ The names of one or more YAML format files to run as ansible playbooks.
OPTIONS
-------
*-D*, *--debug*
*-D*, *--debug*
::
Print any messages the remote module sends to standard error to the console
...
...
docs/man/man1/ansible.1
View file @
5a156d68
...
...
@@ -2,12 +2,12 @@
.\" Title: ansible
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 0
4/17
/2012
.\" Date: 0
5/01
/2012
.\" Manual: System administration commands
.\" Source: Ansible 0.
0.2
.\" Source: Ansible 0.
3.1
.\" Language: English
.\"
.TH "ANSIBLE" "1" "0
4/17/2012" "Ansible 0\&.0\&.2
" "System administration commands"
.TH "ANSIBLE" "1" "0
5/01/2012" "Ansible 0\&.3\&.1
" "System administration commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
...
...
lib/ansible/__init__.py
View file @
5a156d68
...
...
@@ -14,5 +14,5 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
__version__
=
'0.3'
__version__
=
'0.3
.1
'
__author__
=
'Michael DeHaan'
packaging/rpm/ansible.spec
View file @
5a156d68
%if 0%{?rhel} <= 5
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%endif
Name: ansible
Release: 1%{?dist}
Summary: Minimal SSH command and control
Version: 0.3
Version: 0.3
.1
Group: Development/Libraries
License: GPLv3
License: GPLv3
+
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
Url: http://ansible.github.com
...
...
@@ -21,14 +16,12 @@ Requires: python-paramiko
Requires: python-jinja2
%description
Ansible is a radically simple model-driven configuration management,
multi-node deployment, and remote task execution system. Ansible works
over SSH and does not require any software or daemons to be installed
on remote nodes. Extension modules can be written in any language and
are transferred to managed machines automatically.
%prep
%setup -q
...
...
@@ -44,21 +37,19 @@ cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
cp -v library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{python_sitelib}/ansible*
%{_bindir}/ansible*
%{_datadir}/ansible
%config(noreplace) %{_sysconfdir}/ansible
%doc README.md PKG-INFO
%doc README.md PKG-INFO
COPYING
%doc %{_mandir}/man1/ansible*
%changelog
* Mon Apr 23 2012 Michael DeHaan <mdehaan@redhat.com> - 0.3-1
* Tue May 1 2012 Tim Bielawa <tbielawa@redhat.com> - 0.3.1-1
- Release of 0.3.1. Mostly packaging related changes.
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
- Release of 0.3
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
...
...
setup.py
View file @
5a156d68
...
...
@@ -17,7 +17,7 @@ setup(name='ansible',
author
=
__author__
,
author_email
=
'michael.dehaan@gmail.com'
,
url
=
'http://ansible.github.com/'
,
license
=
'GPLv3'
,
license
=
'GPLv3
+
'
,
install_requires
=
[
'paramiko'
,
'jinja2'
,
"PyYAML"
],
package_dir
=
{
'ansible'
:
'lib/ansible'
},
packages
=
[
...
...
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