You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
577B

  1. # This template file assumes the buildbot master lives in a subdirectory of
  2. # /var/lib/buildbot
  3. # Usage:
  4. # cd /var/lib/buildbot
  5. # buildbot create-master [directory]
  6. # systemctl enable --now buildbot@[directory].service
  7. [Unit]
  8. Description=Buildbot Master
  9. After=network.target
  10. [Service]
  11. User=buildbot
  12. Group=buildbot
  13. WorkingDirectory=/var/lib/buildbot
  14. ExecStart=/usr/local/bin/buildbot --verbose start --nodaemon %I
  15. ExecReload=/bin/kill -HUP $MAINPID
  16. Restart=always
  17. ProtectSystem=full
  18. ProtectHome=yes
  19. PrivateDevices=yes
  20. PrivateTmp=yes
  21. [Install]
  22. WantedBy=multi-user.target