mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
* General cleanup & Refine Makefile * Add sysinit & systemd file * refine readme * Bump deb version Use `dch -i` for this work. * Fix dependency * Unnecessary postrm * Add missing arguments
19 lines
478 B
Desktop File
19 lines
478 B
Desktop File
# This file is part of shadowsocks-rust.
|
|
#
|
|
# This is a template unit file. Users may copy and rename the file into
|
|
# config directories to make new service instances. See systemd.unit(5)
|
|
# for details.
|
|
|
|
[Unit]
|
|
Description=Shadowsocks-rust Custom Server Service for %I
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
|
ExecStart=/usr/bin/ssserver --log-without-time -c /etc/shadowsocks-rust/%i.json
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|