blob: 44301f2de70332e36f7023608f093fd35b558628 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
set -e
if [ "$1" != "configure" ]; then
exit 0
fi
if [ -n "$2" ]; then
if dpkg --compare-versions "${2%%-*}" le "1.21.0"; then
cat <<BANNER
----------------------------------------------------------------------
WARNING:
Since version 1.22.0, Unit's non-privileged processes run as unit:unit by
default. Review your system permissions and Unit configuration so apps and
routes that relied on these processes running as nobody:nogroup stay working.
More info: https://unit.nginx.org/installation/#official-packages
----------------------------------------------------------------------
BANNER
fi
fi
if ! getent group unit >/dev/null; then
groupadd --system unit >/dev/null
fi
if ! getent passwd unit >/dev/null; then
useradd \
--system \
--gid unit \
--no-create-home \
--home /nonexistent \
--comment "unit user" \
--shell /bin/false \
unit >/dev/null
fi
#DEBHELPER#
exit 0
|