mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Initial debian packaging
This commit is contained in:
parent
f4132a0162
commit
4f6be6e35b
9 changed files with 59 additions and 0 deletions
3
debian/ansible.dirs
vendored
Normal file
3
debian/ansible.dirs
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
etc/ansible
|
||||||
|
usr/lib/python2.7/site-packages
|
||||||
|
usr/share/ansible
|
4
debian/ansible.install
vendored
Normal file
4
debian/ansible.install
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
hosts etc/ansible
|
||||||
|
python/* usr/share/ansible
|
||||||
|
man/man1/* usr/share/man/man1
|
||||||
|
bin/* usr/bin
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
ansible (0.0.2) nattyl; urgency=low
|
||||||
|
|
||||||
|
* Initial Release test
|
||||||
|
|
||||||
|
-- Henry Graham (hzgraham) <Henry.Graham@mail.wvu.edu> Tue, 17 Apr 2012 17:17:01 -0400
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
5
|
12
debian/control
vendored
Normal file
12
debian/control
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
Source: ansible
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Henry Graham (hzgraham) <Henry.Graham@mail.wvu.edu>
|
||||||
|
Build-Depends: cdbs, debhelper (>= 5.0.0)
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
|
||||||
|
Package: ansible
|
||||||
|
Architecture: all
|
||||||
|
Depends: python-jinja2, python-yaml, python-paramiko
|
||||||
|
Description: The Ansible ssh management application
|
||||||
|
This package installs Ansible, which is an ssh based configuration management application
|
26
debian/copyright
vendored
Normal file
26
debian/copyright
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
This package was debianized by Henry Graham (hzgraham) <Henry.Graham@mail.wvu.edu> on
|
||||||
|
Tue, 17 Apr 2012 12:19:47 -0400.
|
||||||
|
|
||||||
|
It was downloaded from mirror.lcsee.wvu.edu
|
||||||
|
|
||||||
|
Copyright: Henry Graham (hzgraham) <Henry.Graham@mail.wvu.edu>
|
||||||
|
|
||||||
|
License:
|
||||||
|
|
||||||
|
This package is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; version 2 dated June, 1991.
|
||||||
|
|
||||||
|
This package is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this package; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
|
||||||
|
USA.
|
||||||
|
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||||
|
|
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
README.md
|
1
debian/pycompat
vendored
Normal file
1
debian/pycompat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
2
|
6
debian/rules
vendored
Normal file
6
debian/rules
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
# -- makefile --
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
DEB_PYTHON_SYSTEM = pysupport
|
||||||
|
include /usr/share/cdbs/1/class/python-distutils.mk
|
Loading…
Reference in a new issue