systemd_service.adoc 497 B

123456789101112131415161718192021222324
  1. [#action-service]
  2. = Restart a systemd service
  3. :systemd: Easy
  4. :container: Not really possible to do.
  5. include::partial$action_examples/actionHeader.adoc[]
  6. [source,yaml]
  7. ....
  8. actions:
  9. - title: Start httpd
  10. shell: systemctl start httpd
  11. - title: Stop httpd
  12. shell: systemctl stop httpd
  13. - title: Restart httpd
  14. shell: systemctl restart httpd
  15. # https://docs.olivetin.app/action-ssh.html
  16. - title: Restart httpd on server 1
  17. shell: ssh root@server1 'service httpd restart'
  18. ....