9 lines
268 B
Bash
9 lines
268 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Pre-remove script for Favoritter .deb/.rpm package.
|
||
|
|
# Stops the service before package removal.
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if command -v systemctl >/dev/null 2>&1; then
|
||
|
|
systemctl stop favoritter 2>/dev/null || true
|
||
|
|
systemctl disable favoritter 2>/dev/null || true
|
||
|
|
fi
|