c9f379df04
- debian/control, rules, changelog, copyright - postinst/prerm for systemd service enable/disable - Makefile: add PREFIX support for packaging - .gitignore: exclude build artifacts
7 lines
192 B
Bash
7 lines
192 B
Bash
#!/bin/sh
|
|
set -e
|
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
|
systemctl stop kbd-init.service 2>/dev/null || true
|
|
systemctl disable kbd-init.service 2>/dev/null || true
|
|
fi
|