27 lines
494 B
Desktop File
27 lines
494 B
Desktop File
# vim:ft=systemd
|
|
[Unit]
|
|
Description=Pleroma social network %i
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=pleroma
|
|
Environment="HOME={{ pleroma_home }}/%i}"
|
|
WorkingDirectory={{ pleroma_home }}/%i
|
|
|
|
KillMode=process
|
|
Restart=on-failure
|
|
|
|
ExecStart={{ pleroma_home }}/%i/bin/pleroma start
|
|
ExecStop={{ pleroma_home }}/%i/bin/pleroma stop
|
|
|
|
PrivateTmp=true
|
|
ProtectHome=true
|
|
ProtectSystem=full
|
|
PrivateDevice=false
|
|
NoNewPrivileges=true
|
|
CapabilityBoundingSet=~CAP_SYS_ADMIN
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|