mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
ec1e93cc69
- use awx-python in shebang in dev env - scl enable where needed for rhel7 & container installs - use scram-sha-256 pg user hashing by default - ensure psycopg2 is using the correct PG_CONFIG at build time for the right libpq version
11 lines
278 B
Plaintext
Executable File
11 lines
278 B
Plaintext
Executable File
#!/usr/bin/awx-python
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'awx','console_scripts','awx-manage'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
__requires__ = 'awx'
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(
|
|
load_entry_point('awx', 'console_scripts', 'awx-manage')()
|
|
)
|