This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set opts = {} %} | |
{% set local_opts = {} %} | |
{% set default_opts = { "b": { "c": "d", "d": "e" } } %} | |
{% set special1_opts = { "b": { "c": "f" } } %} | |
{% set special2_opts = { "b": { "d": "g" } } %} | |
{% do opts.update({'foo': default_opts }) %} | |
{% do local_opts.update({'foo': special1_opts }) %} | |
{% do opts.update({'bar': default_opts }) %} | |
{% do local_opts.update({'bar': special2_opts }) %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Quassel Core - Distributed IRC Client. | |
After=network.target postgresql.service | |
[Service] | |
User=quassel | |
ExecStart=/usr/bin/quasselcore --configdir=/var/lib/quassel --listen=0.0.0.0 | |
[Install] | |
WantedBy=multi-user.target |