mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 18:26:39 +02:00
10 lines
149 B
Bash
10 lines
149 B
Bash
#!/bin/sh
|
|
|
|
db_file=/var/www/baikal/Specific/db/db.sqlite
|
|
|
|
if ! [ -f "$db_file" ]; then
|
|
touch "$db_file"
|
|
chgrp www-data "$db_file"
|
|
fi
|
|
|
|
exit 0
|