systemd_twemproxy-template.j2 690 B

123456789101112131415161718192021
  1. #####################################################################
  2. # {{ ansible_managed }}
  3. #####################################################################
  4. [Unit]
  5. Description=Redis Twemproxy Template
  6. After=network.target
  7. [Service]
  8. WorkingDirectory=/redis
  9. Type=simple
  10. LimitNOFILE=65535
  11. User=root
  12. ExecStart=/opt/consul-template/bin/consul-template -consul="{{ consul_server_nodes[0] }}:8500" -template '/etc/nutcracker.ctmpl:/etc/nutcracker.yml:/bin/systemctl restart twemproxy.service'
  13. StandardOutput=file:/var/log/consul-template-twemproxy.log
  14. StandardError=file:/var/log/consul-template-twemproxy-error.log
  15. [Install]
  16. WantedBy=multi-user.target
  17. Alias=twemproxy-template.service