mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
The number of requirements are too high, and also requires specific versions. We can't maintain it. The best thing to do is having pip install the needed dependencies.
7 lines
149 B
Bash
7 lines
149 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S buildbot 2>/dev/null
|
|
adduser -S -D -H -h /home/buildbot -s /sbin/nologin -G buildbot -g buildbot buildbot 2>/dev/null
|
|
|
|
exit 0
|