diff options
author | Christian Heimes <[email protected]> | 2018-08-22 15:55:17 +0200 |
---|---|---|
committer | Christian Heimes <[email protected]> | 2018-08-23 14:49:06 +0200 |
commit | a347c1165073e61572993a64c00b122cb49dabe1 (patch) | |
tree | 104b427eee7dfd59b51070b812c5c36d0bfac23a /daemons | |
parent | e4a3942e89dd0e527a767b386e92d341b1a90e51 (diff) | |
download | freeipa-a347c1165073e61572993a64c00b122cb49dabe1.tar.gz freeipa-a347c1165073e61572993a64c00b122cb49dabe1.tar.xz freeipa-a347c1165073e61572993a64c00b122cb49dabe1.zip |
Rename Python scripts and add dynamic shebang
All Python scripts are now generated from a template with a dynamic
shebang.
ipatests/i18n.py is no longer an executable script with shebang. The
module is not executed as script directly, but rather as
$(PYTHON) ipatests/i18n.py
Fixes: https://pagure.io/freeipa/issue/7680
All Python scripts are now template files with a dynamic shebang line.
Reviewed-By: Alexander Bokovoy <[email protected]>
Diffstat (limited to 'daemons')
-rw-r--r--[-rwxr-xr-x] | daemons/dnssec/ipa-dnskeysync-replica.in (renamed from daemons/dnssec/ipa-dnskeysync-replica) | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | daemons/dnssec/ipa-dnskeysyncd.in (renamed from daemons/dnssec/ipa-dnskeysyncd) | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | daemons/dnssec/ipa-ods-exporter.in (renamed from daemons/dnssec/ipa-ods-exporter) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/daemons/dnssec/ipa-dnskeysync-replica b/daemons/dnssec/ipa-dnskeysync-replica.in index e2be3eae5..3a7b04c68 100755..100644 --- a/daemons/dnssec/ipa-dnskeysync-replica +++ b/daemons/dnssec/ipa-dnskeysync-replica.in @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +@PYTHONSHEBANG@ # # Copyright (C) 2014 FreeIPA Contributors see COPYING for license # diff --git a/daemons/dnssec/ipa-dnskeysyncd b/daemons/dnssec/ipa-dnskeysyncd.in index 83df5129a..7c669b54d 100755..100644 --- a/daemons/dnssec/ipa-dnskeysyncd +++ b/daemons/dnssec/ipa-dnskeysyncd.in @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +@PYTHONSHEBANG@ # # Copyright (C) 2014 FreeIPA Contributors see COPYING for license # diff --git a/daemons/dnssec/ipa-ods-exporter b/daemons/dnssec/ipa-ods-exporter.in index 7c0553999..ffa2d403c 100755..100644 --- a/daemons/dnssec/ipa-ods-exporter +++ b/daemons/dnssec/ipa-ods-exporter.in @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +@PYTHONSHEBANG@ # # Copyright (C) 2014 FreeIPA Contributors see COPYING for license # |