Edit file File name : vector.postinst Content :#!/bin/sh set -e # Add Vector to adm group to read /var/logs usermod --append --groups adm vector || true if getent group 'systemd-journal' then # Add Vector to systemd-journal to read journald logs usermod --append --groups systemd-journal vector || true systemctl daemon-reload || true fi if getent group 'systemd-journal-remote' then # Add Vector to systemd-journal-remote to read remote journald logs usermod --append --groups systemd-journal-remote vector || true systemctl daemon-reload || true fi # Automatically added by cargo-deb if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if deb-systemd-helper debian-installed vector.service; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask vector.service >/dev/null || true if deb-systemd-helper --quiet was-enabled vector.service; then # Create new symlinks, if any. deb-systemd-helper enable vector.service >/dev/null || true fi fi # Update the statefile to add new symlinks (if any), which need to be cleaned # up on purge. Also remove old symlinks. deb-systemd-helper update-state vector.service >/dev/null || true fi # End automatically added section # Automatically added by cargo-deb if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -d /run/systemd/system ]; then systemctl --system daemon-reload >/dev/null || true if [ -n "$2" ]; then deb-systemd-invoke try-restart vector.service >/dev/null || true fi fi fi # End automatically added section Save