forked from tildetown/town
13 lines
213 B
Bash
13 lines
213 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dbpath="/town/var/town.db"
|
||
|
srcpath="/town/src/town"
|
||
|
|
||
|
rm -f "$dbpath"
|
||
|
sqlite3 < "${srcpath}/sql/create_town_db.sql" "$dbpath"
|
||
|
chown root:admin "$dbpath"
|
||
|
chmod o-r "$dbpath"
|
||
|
chmod g+w "$dbpath"
|