This replaces the deprecated redis cookbook. Compiles the latest version of Redis, currently 7.0.11 Refs #488
14 lines
310 B
Plaintext
14 lines
310 B
Plaintext
[Unit]
|
|
Description=Redis (%i) persistent key-value database
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
ExecStart=<%= @bin_path %>/redis-server /etc/redis/%i.conf --daemonize no
|
|
User=<%= @user %>
|
|
Group=<%= @group %>
|
|
LimitNOFILE=<%= @limit_nofile %>
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|