ansible/packaging/debian
Sam Doran c0cb353ce1
Remove PyCrypto (#74699)
* Remove PyCrypto from setup.py and packaging script
* Remove mention of pycrpto from installation docs
* Remove PyCrypto from vault
* Remove pycryto constraint and unit test requirement
* Remove PyCrypto tests from unit tests
* Add docs and fix warning message
* Remove section about cryptography library in Ansible Vault docs
2021-05-18 16:12:32 -04:00
..
ansible-core.dirs renamed: ansible-base.{dirs,install} -> ansible-core.{dirs,install} (#74159) 2021-04-06 11:51:52 -05:00
ansible-core.install renamed: ansible-base.{dirs,install} -> ansible-core.{dirs,install} (#74159) 2021-04-06 11:51:52 -05:00
ansible-test.install Fixes for building ansible-base .debs, using py3 (#69534) 2020-05-15 20:30:08 -05:00
changelog Rename to ansible-core (#72594) 2020-11-13 15:42:10 -06:00
compat
control Rename to ansible-core (#72594) 2020-11-13 15:42:10 -06:00
copyright
Dockerfile Move man pages generations to rst2man (#37861) 2018-03-26 16:28:28 -07:00
docs README.md was renamed. Fix deb build reference to the README 2018-04-11 11:22:50 -07:00
pycompat
README.md Move man pages generations to rst2man (#37861) 2018-03-26 16:28:28 -07:00
rules Remove PyCrypto (#74699) 2021-05-18 16:12:32 -04: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>