summarylogtreecommitdiffstats
path: root/firebird-superserver.install
diff options
context:
space:
mode:
Diffstat (limited to 'firebird-superserver.install')
-rw-r--r--firebird-superserver.install18
1 files changed, 1 insertions, 17 deletions
diff --git a/firebird-superserver.install b/firebird-superserver.install
index da132686650d..539d8d06320b 100644
--- a/firebird-superserver.install
+++ b/firebird-superserver.install
@@ -1,16 +1,6 @@
post_install() {
- echo ">>> Check /opt/firebird/SYSDBA.password for default login credentials!"
+ echo ">>> Check /usr/lib/firebird/SYSDBA.password for default login credentials!"
echo ">>> You should change this password at the earliest opportunity!"
-
- # Add firebird user/group
- getent group firebird &> /dev/null || groupadd -g 184 -r firebird
- getent passwd firebird &> /dev/null || useradd -u 184 -r -M -d /opt/firebird -s /bin/false -c "Firebird Database Owner" -g firebird firebird
-
- chown firebird.firebird opt/firebird/{fb_guard,firebird.log,security2.fdb,examples/empbuild/*.fdb}
-
- if [ -x /usr/bin/systemd-tmpfiles ]; then
- systemd-tmpfiles --create firebird.conf
- fi
}
post_upgrade() {
@@ -22,10 +12,4 @@ post_upgrade() {
fi
}
-post_remove() {
- # Remove firebird user/group
- getent passwd firebird &> /dev/null && userdel firebird &> /dev/null
- getent group firebird &> /dev/null && groupdel firebird &> /dev/null || true
-}
-
# vim:set ts=2 sw=2 et: