mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-01-13 13:17:55 +03:00
9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Abort if any command returns an error value
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = purge ]; then
|
||
|
update-rc.d qemu-server remove >/dev/null 2>&1
|
||
|
fi
|