mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
17 lines
319 B
SYSTEMD
17 lines
319 B
SYSTEMD
|
[Unit]
|
||
|
Description=Memcached Daemon
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=memcached
|
||
|
# Remove '-l 127.0.0.1' to listen on all addresses
|
||
|
ExecStart=/usr/bin/memcached -l 127.0.0.1 -o modern
|
||
|
Restart=always
|
||
|
PrivateTmp=yes
|
||
|
PrivateDevices=yes
|
||
|
ProtectSystem=full
|
||
|
MemoryDenyWriteExecute=yes
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|