summaryrefslogtreecommitdiffstats
path: root/distribution/virt/import/guestcheck4down
blob: 1199992cd0cbd12771f711189d5bb8ea39b883b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

if [[ $# < 1 ]]; then 
	echo "Usage: $0 guestname"
	exit 1
fi

if ! virsh list | grep -q $1; then 
	exit 0
else
	exit 1
fi