Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vojtech Myslivec
ISPConfig 3
Commits
32122170
Commit
32122170
authored
Mar 13, 2019
by
Till Brehm
Browse files
Merge branch 'shebang' into 'master'
Use env in bash scripting shebangs See merge request
ispconfig/ispconfig3!887
parents
a240d361
d3ecb3df
Changes
17
Hide whitespace changes
Inline
Side-by-side
helper_scripts/gentoo_setup.sh
View file @
32122170
#!/
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 @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
#### Config ################################
DBHOST
=
"localhost"
...
...
helper_scripts/utils.sh
View file @
32122170
#!/
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 @
32122170
#!/
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 @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-e
...
...
server/cron.sh
View file @
32122170
#!/
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 @
32122170
#!/
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 @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
# Create the jailkit chroot
...
...
server/scripts/create_jailkit_programs.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
# Add specified programs and their libraries to the jailkit chroot
...
...
server/scripts/create_jailkit_user.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
# Add user to the jailkit chroot
...
...
server/scripts/ispconfig_update.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
_UPD
=
1
...
...
server/scripts/run-getmail.sh
View file @
32122170
#!/
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 @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
{
umask
0077
\
...
...
server/scripts/update_from_dev_stable.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
{
umask
0077
\
...
...
server/scripts/update_from_svn.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
CUR
=
`
dirname
$0
`
bash
${
CUR
}
/update_from_dev.sh
...
...
server/scripts/update_stable.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
_UPD
=
1
...
...
server/server.sh
View file @
32122170
#!/
bin/
bash
#!/
usr/bin/env
bash
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
...
...
Write
Preview
Supports
Markdown
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