Quellcode durchsuchen

Systemctl service improved

master
Dirk Alders vor 2 Jahren
Ursprung
Commit
4ee21b692f
2 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. 2
    1
      __install__.py
  2. 2
    2
      config_example/config.py

+ 2
- 1
__install__.py Datei anzeigen

@@ -6,7 +6,8 @@ import sys
6 6
 SERVICE_FILE = """
7 7
 [Unit]
8 8
 Description=MPD Monitor Service
9
-After=mosquitto.target
9
+After=network-online.target
10
+Wants=network-online.target
10 11
 [Service]
11 12
 User=%(UID)d
12 13
 Group=%(GID)d

+ 2
- 2
config_example/config.py Datei anzeigen

@@ -13,10 +13,10 @@ MQTT_TOPIC = "hifi/mpd"
13 13
 #
14 14
 __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
15 15
 APP_NAME = "mpd"
16
-LOGTARGET = 'logfile'   # possible choices are: 'logfile' or 'stdout'
16
+LOGTARGET = 'stdout'   # possible choices are: 'logfile' or 'stdout'
17 17
 LOGLVL = 'DEBUG'
18 18
 
19 19
 LOGHOST = 'cutelog'
20 20
 LOGPORT = 19996
21 21
 
22
-formatter = report.LONG_FMT
22
+formatter = report.SHORT_FMT

Laden…
Abbrechen
Speichern