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
eae1fdd7
Commit
eae1fdd7
authored
Apr 03, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #109 from jeckersb/version-0.0.2
Bump release to 0.0.2
parents
3c314143
5aad4bac
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
10 deletions
+13
-10
ansible.spec
+4
-1
docs/man/man1/ansible-playbook.1
+3
-3
docs/man/man1/ansible-playbook.1.asciidoc
+1
-1
docs/man/man1/ansible.1
+3
-3
docs/man/man1/ansible.1.asciidoc
+1
-1
lib/ansible/__init__.py
+1
-1
No files found.
ansible.spec
View file @
eae1fdd7
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
Name: ansible
Name: ansible
Release: 1
Release: 1
Summary: Minimal SSH command and control
Summary: Minimal SSH command and control
Version: 0.0.
1
Version: 0.0.
2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
Group: Development/Libraries
Group: Development/Libraries
...
@@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT
...
@@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT
%changelog
%changelog
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
- Release of 0.0.2
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
- Release of 0.0.1
- Release of 0.0.1
docs/man/man1/ansible-playbook.1
View file @
eae1fdd7
...
@@ -2,12 +2,12 @@
...
@@ -2,12 +2,12 @@
.\" Title: ansible-playbook
.\" Title: ansible-playbook
.\" Author: [see the "AUTHOR" section]
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 0
3/2
3/2012
.\" Date: 0
4/0
3/2012
.\" Manual: System administration commands
.\" Manual: System administration commands
.\" Source: Ansible 0.0.
1
.\" Source: Ansible 0.0.
2
.\" Language: English
.\" Language: English
.\"
.\"
.TH "ANSIBLE\-PLAYBOOK" "1" "0
3/23/2012" "Ansible 0\&.0\&.1
" "System administration commands"
.TH "ANSIBLE\-PLAYBOOK" "1" "0
4/03/2012" "Ansible 0\&.0\&.2
" "System administration commands"
.\" -----------------------------------------------------------------
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" -----------------------------------------------------------------
...
...
docs/man/man1/ansible-playbook.1.asciidoc
View file @
eae1fdd7
...
@@ -2,7 +2,7 @@ ansible-playbook(1)
...
@@ -2,7 +2,7 @@ ansible-playbook(1)
===================
===================
:doctype:manpage
:doctype:manpage
:man source: Ansible
:man source: Ansible
:man version: 0.0.
1
:man version: 0.0.
2
:man manual: System administration commands
:man manual: System administration commands
NAME
NAME
...
...
docs/man/man1/ansible.1
View file @
eae1fdd7
...
@@ -2,12 +2,12 @@
...
@@ -2,12 +2,12 @@
.\" Title: ansible
.\" Title: ansible
.\" Author: [see the "AUTHOR" section]
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 0
3/2
3/2012
.\" Date: 0
4/0
3/2012
.\" Manual: System administration commands
.\" Manual: System administration commands
.\" Source: Ansible 0.0.
1
.\" Source: Ansible 0.0.
2
.\" Language: English
.\" Language: English
.\"
.\"
.TH "ANSIBLE" "1" "0
3/23/2012" "Ansible 0\&.0\&.1
" "System administration commands"
.TH "ANSIBLE" "1" "0
4/03/2012" "Ansible 0\&.0\&.2
" "System administration commands"
.\" -----------------------------------------------------------------
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" -----------------------------------------------------------------
...
...
docs/man/man1/ansible.1.asciidoc
View file @
eae1fdd7
...
@@ -2,7 +2,7 @@ ansible(1)
...
@@ -2,7 +2,7 @@ ansible(1)
=========
=========
:doctype:manpage
:doctype:manpage
:man source: Ansible
:man source: Ansible
:man version: 0.0.
1
:man version: 0.0.
2
:man manual: System administration commands
:man manual: System administration commands
NAME
NAME
...
...
lib/ansible/__init__.py
View file @
eae1fdd7
...
@@ -14,5 +14,5 @@
...
@@ -14,5 +14,5 @@
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
__version__
=
'0.0.
1
'
__version__
=
'0.0.
2
'
__author__
=
'Michael DeHaan'
__author__
=
'Michael DeHaan'
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