Sophie

Sophie

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

etckeeper-1.10-1.fc18.noarch.rpm

#!/bin/sh
set -e

# Used by .etckeeper to run a command if the file it acts on
# (the last parameter) exists.
maybe () {
	command="$1"
	shift 1

	if eval [ -e "\"\$$#\"" ]; then
		"$command" "$@"
	fi
}

# Yes, this runs code from the repository. As documented, etckeeper-init
# should only be run on repositories you trust.
if [ -e .etckeeper ]; then
	. ./.etckeeper
else
	touch .etckeeper
	chmod 600 .etckeeper
fi