13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
dbpath="/town/var/signups/signups.db"
|
|
srcpath="/town/src/town"
|
|
|
|
rm -f "$dbpath"
|
|
sqlite3 < "${srcpath}/sql/create_signups_db.sql" "$dbpath"
|
|
chown join:admin "$dbpath"
|
|
chmod o-r "$dbpath"
|
|
chmod g+w "$dbpath"
|