Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > cedef3a8ba2eba485c367c1d3a4bab71 > files > 42

etckeeper-1.10-1.fc18.noarch.rpm

#!/bin/sh
set -e

if [ "$1" != "-f" ]; then
	echo "** Warning: This will DESTROY all recorded history for $ETCKEEPER_DIR,"
	echo "** including the $VCS repository."
	echo ""
	printf "Are you sure you want to do this? [yN] "
	read answer
	case "$answer" in 
		[Yy]*)
			echo "Proceeding.."
			exit 0
		;;
		*)
			echo "Aborting etckeeper uninit."
			exit 1
		;;
	esac
fi