configd: roll back env(1) usage; FreeBSD's service(8)

refuses to take /usr/local/bin into account, which kind of defeats
the purpose of using the portable "env" command...
This commit is contained in:
Franco Fichtner 2015-06-08 13:35:20 +02:00
parent e2276435d3
commit 73b782069c
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ configd_load_rc_config()
required_files=""
command_args="${required_args}"
command=/usr/local/opnsense/service/configd.py
command_interpreter="/usr/bin/env python2.7"
command_interpreter=/usr/local/bin/python2.7
}
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2.7
#!/usr/local/bin/python2.7
"""
Copyright (c) 2014 Ad Schellevis

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2.7
#!/usr/local/bin/python2.7
"""
Copyright (c) 2015 Ad Schellevis

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2.7
#!/usr/local/bin/python2.7
# original source from https://github.com/thesharp/daemonize