Skip to content
Snippets Groups Projects
Select Git revision
  • 9943095942e5a4bf295219405ba774d00349db76
  • master default
  • zs-dobrichovice
3 results

db.ddl

Blame
  • kam-shipcat.postinst 415 B
    #!/bin/sh
    set -e
    
    # systemd reload is usually added automatically by dh_installsystemd, but our
    # package provides only a template unit, which is not detected by DH. Let us do
    # it manually.
    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
    	fi
    fi