#!/bin/sh -e

echo "Turning on nospoof in /etc/host.conf"
if [ "$cpch_DRY_RUN" -eq 0 ]; then
	if grep -qF 'multi on' /etc/host.conf; then
		sed -i 's/multi/nospoof/' /etc/host.conf
	else
		echo 'nospoof on' >> /etc/host.conf
	fi
fi
