__nextcloud: harden here-doc for su call
Because the here-doc will be evaluated again by the shell, it will was changed to avoid this. Because the script does not depend on such function, it will be done in faviour of special characters.
This commit is contained in:
parent
b6db7b5ca8
commit
1a233062a5
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ occ() {
|
||||||
# su creates a new shell, so it does not affect the current session
|
# su creates a new shell, so it does not affect the current session
|
||||||
# will not use -q as it supresses errors, too
|
# will not use -q as it supresses errors, too
|
||||||
cat << SHELL
|
cat << SHELL
|
||||||
su -s /bin/sh -l "$user" -- -e <<SU
|
su -s /bin/sh -l "$user" -- -e <<'SU'
|
||||||
cd '$installdir' && php occ --no-warnings --no-interaction --no-ansi $@
|
cd '$installdir' && php occ --no-warnings --no-interaction --no-ansi $@
|
||||||
SU
|
SU
|
||||||
SHELL
|
SHELL
|
||||||
|
|
Loading…
Reference in a new issue