Skip to content
Snippets Groups Projects
Verified Commit 864a61cf authored by nd's avatar nd
Browse files

small typos and bug fixes

parent 42082111
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ import configparser
class GlobalState():
def __init__(self, options):
self.config = self._load_config(options.get('config'))
self.config = self._clean_config(self.config)
self.config.update(self._clean_config(options))
try:
self.db = self._get_connection()
......
......@@ -126,7 +126,7 @@
cron:
name: "hedgedoc retention cron"
user: hedgedoc
job: /usr/local/bin/hedgedoc-util/hedgedoc-retention-cron.sh
hour: 6
minute: 5
job: /usr/local/bin/hedgedoc-retention-cron.sh
hour: "6"
minute: "5"
when: hedgedoc.retention_cron.enabled
HEDGEDOCUTIL_DBHOSTt=localhost
HEDGEDOCUTIL_DBHOST=localhost
HEDGEDOCUTIL_DBNAME=hedgedoc
HEDGEDOCUTIL_DBUSER=hedgedoc
HEDGEDOCUTIL_DBPW={{ hedgedoc.db.pw }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment