5 lines
77 B
Bash
5 lines
77 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
chown -R 33:33 /var/www/html /var/www/html/data
|
||
|
|
exec "$@"
|