https://github.com/etcd-io/etcd
Raw File
Tip revision: 19002cfc689fba2b8f56605e5797bf79f8b61fdd authored by Marek Siarkowicz on 15 September 2022, 12:02:30 UTC
version: bump up to 3.5.5
Tip revision: 19002cf
etcd.service
[Unit]
Description=etcd key-value store
Documentation=https://github.com/etcd-io/etcd
After=network-online.target local-fs.target remote-fs.target time-sync.target
Wants=network-online.target local-fs.target remote-fs.target time-sync.target

[Service]
User=etcd
Type=notify
Environment=ETCD_DATA_DIR=/var/lib/etcd
Environment=ETCD_NAME=%m
ExecStart=/usr/bin/etcd
Restart=always
RestartSec=10s
LimitNOFILE=40000

[Install]
WantedBy=multi-user.target
back to top