1
0
mirror of synced 2026-01-19 09:08:30 +00:00
steve 4d12fe4450 2006-06-08 13:46:38 by steve
Added the debian/ subdirectory to the CVS repository.
  (Don't include it in "make release".)
  Clean target updated to clean all debian temporary files.
2006-06-08 13:46:38 +00:00

20 lines
403 B
Bash

#!/bin/sh
set -e
#
# Skip, if we are not in "configure" state
#
if [ "$1" != "configure" ]; then
echo "I: Skipping configuration"
exit 0
fi
if [ -d "/etc/xen-tools/xen-create-image.d" ]; then
rmdir "/etc/xen-tools/xen-create-image.d" 2>/dev/null ||
echo "The directory /etc/xen-tools/xen-create-image.d is no longer used. You can safely remove it."
fi
#DEBHELPER#
exit 0