22 lines
455 B
Bash
Executable File
22 lines
455 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
case "$1" in
|
|
configure|upgrade|1|2)
|
|
|
|
fc-cache -f
|
|
if [ ! -f /.dockerenv ]; then
|
|
systemctl enable bbb-export-annotations.service
|
|
systemctl daemon-reload
|
|
startService bbb-export-annotations.service || echo "bbb-export-annotations service could not be registered or started"
|
|
fi
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|