compose-website/importers/nginx.sh
2014-10-27 12:18:43 +00:00

6 lines
199 B
Bash
Executable file

#!/bin/bash
if [ ! -d "/data/per-user/$USER/nginx/data" ]; then
mkdir -p /data/per-user/$USER/nginx/data/www-content
echo Hello $USER > /data/per-user/$USER/nginx/data/www-content/index.html
fi