Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- # This template file assumes the buildbot master lives in a subdirectory of
- # /var/lib/buildbot
- # Usage:
- # cd /var/lib/buildbot
- # buildbot create-master [directory]
- # systemctl enable --now buildbot@[directory].service
- [Unit]
- Description=Buildbot Master
- After=network.target
-
- [Service]
- User=buildbot
- Group=buildbot
- WorkingDirectory=/var/lib/buildbot
- ExecStart=/usr/bin/buildbot --verbose start --nodaemon %I
- ExecReload=/bin/kill -HUP $MAINPID
- Restart=always
- ProtectSystem=full
- ProtectHome=yes
- PrivateDevices=yes
- PrivateTmp=yes
-
- [Install]
- WantedBy=multi-user.target
|