Dominique Leuenberger 2018-05-15 08:13:17 +00:00 committed by Git OBS Bridge
commit b4897ce782
3 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri May 11 10:50:50 UTC 2018 - mchandras@suse.de
- Add new QUASSELCORE_PORT sysconfig variable to allow users to change
the default Quassel Core TCP port.
-------------------------------------------------------------------
Mon Apr 30 14:19:49 UTC 2018 - jengelh@inai.de

View File

@ -6,7 +6,7 @@ After=network.target
EnvironmentFile=-/etc/sysconfig/quasselcore
PIDFile=/var/run/quassel.pid
User=quasselcore
ExecStart=/usr/bin/quasselcore --listen=${QUASSELCORE_LISTEN} --configdir=/var/lib/quasselcore --logfile=/var/log/quassel/quasselcore
ExecStart=/usr/bin/quasselcore --listen=${QUASSELCORE_LISTEN} --port=${QUASSELCORE_PORT} --configdir=/var/lib/quasselcore --logfile=/var/log/quassel/quasselcore
[Install]
WantedBy=multi-user.target

View File

@ -9,4 +9,10 @@
#
QUASSELCORE_LISTEN="127.0.0.1"
## Type: integer
## Default: 4242
## ServiceReload: quasselcore
#
# TCP port the quassel core should listen on
#
QUASSELCORE_PORT="4242"