diff options
-rwxr-xr-x | go | 2 | ||||
-rw-r--r-- | steuermann/config.py | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ #!/bin/sh -n=9 +n=10 rm -rf build diff --git a/steuermann/config.py b/steuermann/config.py index a2beda2..3a001a7 100644 --- a/steuermann/config.py +++ b/steuermann/config.py @@ -1,8 +1,8 @@ -db_creds = 'steuermann.db' +db_creds = '/ssbwebv1/data2/steuermann/steuermann.db' def open_db() : import sqlite3 return sqlite3.connect(db_creds) -logdir = 'logs' -host_logs = 'host_logs' +logdir = '/ssbwebv1/data2/steuermann/logs' +host_logs = '/ssbwebv1/data2/steuermann/host_logs' |