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