8 lines
152 B
Bash
Executable file
8 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -u
|
|
set -e
|
|
|
|
echo "== Running post-installation hooks as $(id -un) user =="
|
|
su -l -s /bin/sh www-data -c /app/gx.post-installation.www.sh
|
|
|