diff options
author | Grant Slater <grant.slater@wearefriday.com> | 2018-02-19 11:24:53 +0000 |
---|---|---|
committer | Toshio Kuratomi <a.badger@gmail.com> | 2018-02-19 13:39:32 -0800 |
commit | e3192fb3a4a259535c0ae2a21ee2f74b3cb66faf (patch) | |
tree | 68af900bd803345991cc75897d6558fb65c48179 /packaging/debian/rules | |
parent | edaeb69a35e4ff8326c41546e72ca1bd0ecb808b (diff) | |
download | ansible-e3192fb3a4a259535c0ae2a21ee2f74b3cb66faf.tar.gz |
Use pycrypto backend, rather than python-cryptography, on Ubuntu Precise
Diffstat (limited to 'packaging/debian/rules')
-rwxr-xr-x | packaging/debian/rules | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packaging/debian/rules b/packaging/debian/rules index 130451a1ea..792a74b664 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -6,6 +6,9 @@ DEB_PYTHON2_MODULE_PACKAGES=ansible include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk +ifeq ($(shell lsb_release -cs), precise) + export ANSIBLE_CRYPTO_BACKEND = pycrypto +endif ifeq ($(shell lsb_release -cs), trusty) export ANSIBLE_CRYPTO_BACKEND = pycrypto endif |