https://github.com/etcd-io/etcd
Raw File
Tip revision: 3b252db4f6e68c3ae3ecaa87ab1b502f46d39d6e authored by Marek Siarkowicz on 07 December 2023, 10:29:12 UTC
version: bump up to 3.5.11
Tip revision: 3b252db
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