51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
# postinst script for reaction
 | 
						|
#
 | 
						|
# see: dh_installdeb(1)
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
# summary of how this script can be called:
 | 
						|
#        * <postinst> `configure' <most-recently-configured-version>
 | 
						|
#        * <old-postinst> `abort-upgrade' <new version>
 | 
						|
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
 | 
						|
#          <new-version>
 | 
						|
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
 | 
						|
#          <failed-install-package> <version> `removing'
 | 
						|
#          <conflicting-package> <version>
 | 
						|
# for details, see http://www.debian.org/doc/debian-policy/ or
 | 
						|
# the debian-policy package
 | 
						|
#
 | 
						|
 | 
						|
case "$1" in
 | 
						|
    configure|abort-upgrade|abort-remove|abort-deconfigure)
 | 
						|
 | 
						|
    ;;
 | 
						|
 | 
						|
    *)
 | 
						|
        echo "postinst called with unknown argument \`$1'" >&2
 | 
						|
        exit 1
 | 
						|
    ;;
 | 
						|
esac
 | 
						|
 | 
						|
# The following line should be removed in trixie or trixie+1
 | 
						|
deb-systemd-helper unmask 'reaction.service' >/dev/null || true
 | 
						|
 | 
						|
# was-enabled defaults to true, so new installations run enable.
 | 
						|
if deb-systemd-helper --quiet was-enabled 'reaction.service'; then
 | 
						|
  # Enables the unit on first installation, creates new
 | 
						|
  # symlinks on upgrades if the unit file has changed.
 | 
						|
  deb-systemd-helper enable 'reaction.service' >/dev/null || true
 | 
						|
else
 | 
						|
  # 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 'reaction.service' >/dev/null || true
 | 
						|
fi
 | 
						|
 | 
						|
if [ -d /run/systemd/system ]; then
 | 
						|
  systemctl --system daemon-reload >/dev/null || true
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
exit 0
 |