mirror of
https://github.com/luzifer-docker/gmail-roundcube.git
synced 2024-12-21 02:11:20 +00:00
8 lines
127 B
Bash
8 lines
127 B
Bash
#!/bin/bash
|
|
|
|
cd /var/www
|
|
|
|
for subdir in db db/enigma logs temp; do
|
|
mkdir -p "${subdir}"
|
|
chown nobody: "${subdir}"
|
|
done
|