ansible/packaging/debian
2017-10-13 15:07:02 -07:00
..
ansible.dirs Debian packaging updates 2015-11-06 15:51:17 -05:00
ansible.install Remove install references to library/ 2014-09-29 08:46:35 -04:00
changelog Change <support@ansible.com> - it's being retired. 2016-10-15 16:42:13 -07:00
compat Move debian under packaging subdirectory 2012-04-18 22:50:09 -04:00
control Mention Ansible in package descriptions 2017-10-05 08:41:15 -07:00
copyright Move debian under packaging subdirectory 2012-04-18 22:50:09 -04:00
Dockerfile Fix Debian packaging Dockerfile and docs. 2017-10-13 15:07:02 -07:00
docs Move debian under packaging subdirectory 2012-04-18 22:50:09 -04:00
pycompat Move debian under packaging subdirectory 2012-04-18 22:50:09 -04:00
README.md Fix Debian packaging Dockerfile and docs. 2017-10-13 15:07:02 -07:00
rules Fix pycrypto backend setting to work when multiple distros are specified in DEB_DIST 2017-07-13 12:13:54 -07:00

Ansible Debian Package

To create an Ansible DEB package:

Note: You must run this target as root or set PBUILDER_BIN='sudo pbuilder'

apt-get install asciidoc cdbs debootstrap devscripts make pbuilder python-setuptools
git clone https://github.com/ansible/ansible.git
cd ansible
DEB_DIST='xenial trusty precise' make deb

Building in Docker:

git clone https://github.com/ansible/ansible.git
cd ansible
docker build -t ansible-deb-builder -f packaging/debian/Dockerfile .
docker run --privileged -e DEB_DIST='trusty' -v $(pwd):/ansible ansible-deb-builder

The debian package file will be placed in the deb-build directory. This can then be added to an APT repository or installed with dpkg -i <package-file>.

Note that dpkg -i does not resolve dependencies.

To install the Ansible DEB package and resolve dependencies:

dpkg -i <package-file>
apt-get -fy install

Or, if you are running Debian Stretch (or later) or Ubuntu Xenial (or later):

apt install /path/to/<package-file>