blob: 9d0f6a56fc12389e209545265d9d28456ae9dfdf (
plain)
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
45
46
47
|
post_install() {
assert_user_and_group_exist
directory_permissions
/usr/bin/systemd-tmpfiles --create neo4j.conf
}
post_upgrade() {
assert_user_and_group_exist
directory_permissions
license_disclaimer
}
post_remove() {
if getent passwd neo4j >/dev/null; then
userdel neo4j
fi
if getent group neo4j >/dev/null; then
groupdel neo4j
fi
}
directory_permissions() {
chown -R neo4j:neo4j /var/lib/neo4j
chown -R neo4j:neo4j /var/log/neo4j
chown -R neo4j:neo4j /etc/neo4j
}
assert_user_and_group_exist() {
if ! getent group neo4j >/dev/null; then
groupadd --system neo4j
fi
if ! getent passwd neo4j >/dev/null; then
useradd --system -g neo4j -d /var/lib/neo4j -s /bin/false neo4j
fi
}
license_disclaimer() {
echo $(sed 's/ +/ /g' <<- EOF
By installing the neo4j-enterprise package you are accepting
the commercial license agreement from Neo4j Inc. Read the license
under the /usr/share/licenses/neo4j directory or at
https://neo4j.com/licensing/. Check and modify the licensing status
by the "neo4j-admin server license" command.
EOF
)
}
|