Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Vojtech Myslivec
ISPConfig 3
Commits
d3ecb3df
Commit
d3ecb3df
authored
Mar 13, 2019
by
Philipp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use env in bash scripting shebangs
parent
a240d361
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
17 additions
and
17 deletions
+17
-17
helper_scripts/gentoo_setup.sh
helper_scripts/gentoo_setup.sh
+1
-1
helper_scripts/pdns-slave-zone-cleanup.sh
helper_scripts/pdns-slave-zone-cleanup.sh
+1
-1
helper_scripts/utils.sh
helper_scripts/utils.sh
+1
-1
remoting_client/cli/ispconfig-cli
remoting_client/cli/ispconfig-cli
+1
-1
remoting_client/examples/rest_example.sh
remoting_client/examples/rest_example.sh
+1
-1
server/cron.sh
server/cron.sh
+1
-1
server/scripts/create_daily_nginx_access_logs.sh
server/scripts/create_daily_nginx_access_logs.sh
+1
-1
server/scripts/create_jailkit_chroot.sh
server/scripts/create_jailkit_chroot.sh
+1
-1
server/scripts/create_jailkit_programs.sh
server/scripts/create_jailkit_programs.sh
+1
-1
server/scripts/create_jailkit_user.sh
server/scripts/create_jailkit_user.sh
+1
-1
server/scripts/ispconfig_update.sh
server/scripts/ispconfig_update.sh
+1
-1
server/scripts/run-getmail.sh
server/scripts/run-getmail.sh
+1
-1
server/scripts/update_from_dev.sh
server/scripts/update_from_dev.sh
+1
-1
server/scripts/update_from_dev_stable.sh
server/scripts/update_from_dev_stable.sh
+1
-1
server/scripts/update_from_svn.sh
server/scripts/update_from_svn.sh
+1
-1
server/scripts/update_stable.sh
server/scripts/update_stable.sh
+1
-1
server/server.sh
server/server.sh
+1
-1
No files found.
helper_scripts/gentoo_setup.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# Copyright (c) 2009, Scott Barr <gsbarr@gmail.com>
# All rights reserved.
#
...
...
helper_scripts/pdns-slave-zone-cleanup.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
#### Config ################################
DBHOST
=
"localhost"
...
...
helper_scripts/utils.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# this is a bash script library to be called by other scripts,
# but not to be run directly
...
...
remoting_client/cli/ispconfig-cli
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# Command line for ISPConfig remote user REST API using either smart functions or raw methods.
# Author: Johan Ehnberg, johan@molnix.com
...
...
remoting_client/examples/rest_example.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-e
...
...
server/cron.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
...
...
server/scripts/create_daily_nginx_access_logs.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
FILES
=
/var/log/ispconfig/httpd/
*
for
f
in
$FILES
...
...
server/scripts/create_jailkit_chroot.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# Create the jailkit chroot
...
...
server/scripts/create_jailkit_programs.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# Add specified programs and their libraries to the jailkit chroot
...
...
server/scripts/create_jailkit_user.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
# Add user to the jailkit chroot
...
...
server/scripts/ispconfig_update.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
_UPD
=
1
...
...
server/scripts/run-getmail.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
set
-e
cd
/etc/getmail
...
...
server/scripts/update_from_dev.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
{
umask
0077
\
...
...
server/scripts/update_from_dev_stable.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
{
umask
0077
\
...
...
server/scripts/update_from_svn.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
CUR
=
`
dirname
$0
`
bash
${
CUR
}
/update_from_dev.sh
...
...
server/scripts/update_stable.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
_UPD
=
1
...
...
server/server.sh
View file @
d3ecb3df
#!/
bin/
bash
#!/
usr/bin/env
bash
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment