mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-08 08:24:25 +00:00
11 lines
133 B
Bash
11 lines
133 B
Bash
#!/bin/sh
|
|
|
|
if [ -d /var/lib/mod_tile ]
|
|
then
|
|
;
|
|
else
|
|
mkdir /var/lib/mod_tile
|
|
chown www-data:www-data /var/lib/mod_tile
|
|
fi
|
|
|