18 lines
382 B
Plaintext
18 lines
382 B
Plaintext
# DO NOT EDIT: This file is being managed by Puppet.
|
|
[Unit]
|
|
Description=etcd key-value store
|
|
Documentation=https://github.com/etcd-io/etcd
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=<%= @user %>
|
|
Group=<%= @group %>
|
|
Type=notify
|
|
ExecStart=/usr/bin/etcd --config-file <%= @config_file %>
|
|
Restart=always
|
|
RestartSec=10s
|
|
LimitNOFILE=<%= @max_open_files %>
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|