ansible/packaging/debian
Rick Elrod 04ec72160a
Fixes for building ansible-base .debs, using py3 (#69534)
Change:
- Changes for ansible -> ansible base
- Bump to py3 for 2.10 PPA release

Test Plan:
- Local VM; Jenkins after merge.

Tickets:
- Refs #57342

Signed-off-by: Rick Elrod <rick@elrod.me>
2020-05-15 20:30:08 -05:00
..
ansible-test.install Fixes for building ansible-base .debs, using py3 (#69534) 2020-05-15 20:30:08 -05:00
ansible.dirs debian: install lib in dist-packages (#64412) 2019-11-05 10:45:05 -05:00
ansible.install debian: prepare the ansible-test package 2019-09-03 22:00:24 -07:00
changelog Fixes for building ansible-base .debs, using py3 (#69534) 2020-05-15 20:30:08 -05:00
compat
control Fixes for building ansible-base .debs, using py3 (#69534) 2020-05-15 20:30:08 -05:00
copyright
Dockerfile
docs
pycompat
README.md
rules Fixes for building ansible-base .debs, using py3 (#69534) 2020-05-15 20:30:08 -05: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 python-docutils 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>