mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-18 16:55:13 +03:00
https://ipfs.io/ Inter Platnetary File System (IPFS), a peer-to-peer hypermedia distribution protocol
6 lines
132 B
Bash
6 lines
132 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S ipfs 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/ipfs -s /sbin/nologin -G ipfs -g ipfs ipfs 2>/dev/null
|
|
|
|
exit 0
|