blob: bfe6320bb60d01a9e83848a119863bfb00bbc64f (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Alpine Linux pre-install script for geoclue
# Copyright 2019 Leo (thinkabit.ukim@gmail.com)
# Distributed under the terms of the GNU General Public License, v2 or later
addgroup -S geoclue 2>/dev/null
adduser -S -D -h /var/lib/geoclue -s /sbin/nologin -G geoclue geoclue 2>/dev/null
exit 0
|