mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2024-12-25 23:21:43 +03:00
9 lines
146 B
Bash
Executable File
9 lines
146 B
Bash
Executable File
#! /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
|