mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Require a recent enough version of pycrypto and see that playbook and vault ues it.
This commit is contained in:
parent
aacccd441b
commit
0fefab6651
3 changed files with 7 additions and 1 deletions
|
@ -18,6 +18,9 @@
|
||||||
|
|
||||||
#######################################################
|
#######################################################
|
||||||
|
|
||||||
|
__requires__ = ['ansible']
|
||||||
|
import pkg_resources
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import stat
|
import stat
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
# example playbook to bootstrap this script in the examples/ dir which
|
# example playbook to bootstrap this script in the examples/ dir which
|
||||||
# installs ansible and sets it up to run on cron.
|
# installs ansible and sets it up to run on cron.
|
||||||
|
|
||||||
|
__requires__ = ['ansible']
|
||||||
|
import pkg_resources
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import traceback
|
import traceback
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -29,7 +29,7 @@ setup(name='ansible',
|
||||||
author_email='michael@ansible.com',
|
author_email='michael@ansible.com',
|
||||||
url='http://ansible.com/',
|
url='http://ansible.com/',
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
install_requires=['paramiko', 'jinja2', "PyYAML"],
|
install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
|
||||||
package_dir={ 'ansible': 'lib/ansible' },
|
package_dir={ 'ansible': 'lib/ansible' },
|
||||||
packages=[
|
packages=[
|
||||||
'ansible',
|
'ansible',
|
||||||
|
|
Loading…
Reference in a new issue