mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
http://boinc.berkeley.edu/ Open-source software for volunteer computing and grid computing.
6 lines
117 B
Bash
6 lines
117 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S boinc 2>/dev/null
|
|
adduser -S -D -h /var/lib/boinc -G boinc -g boinc boinc 2>/dev/null
|
|
|
|
exit 0
|