gen_conf: fix shabang -x
This commit is contained in:
parent
f766b829e6
commit
7a1c86275f
4 changed files with 1 additions and 5 deletions
1
gestion/gen_confs/__init__.py
Executable file → Normal file
1
gestion/gen_confs/__init__.py
Executable file → Normal file
|
@ -1,4 +1,3 @@
|
||||||
#! /usr/bin/env python
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
""" Package pour la génération des fichiers de conf
|
""" Package pour la génération des fichiers de conf
|
||||||
|
|
1
gestion/gen_confs/autostatus.py
Executable file → Normal file
1
gestion/gen_confs/autostatus.py
Executable file → Normal file
|
@ -1,4 +1,3 @@
|
||||||
#! /usr/bin/env python
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#! /usr/bin/env python
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -12,7 +11,7 @@ Utilisé par generate.py
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
if '/usr/scripts' not in sys.path:
|
if '/usr/scripts' not in sys.path:
|
||||||
sys.path.insert(0, '/usr/scripts/')
|
sys.path.append('/usr/scripts')
|
||||||
import lc_ldap.shortcuts
|
import lc_ldap.shortcuts
|
||||||
import lc_ldap.objets
|
import lc_ldap.objets
|
||||||
from gestion.gen_confs import gen_config
|
from gestion.gen_confs import gen_config
|
||||||
|
|
1
gestion/gen_confs/trigger.py
Executable file → Normal file
1
gestion/gen_confs/trigger.py
Executable file → Normal file
|
@ -1,4 +1,3 @@
|
||||||
#! /usr/bin/env python
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue