#!/bin/sh

# test if the jk_chrootsh is already in /etc/shells
if test -w /etc/shells; then \
	if grep /usr/sbin/jk_chrootsh /etc/shells ; then \
		echo "commenting /usr/sbin/jk_chroots out of /etc/shells";\
		sed -i "s|^/usr/sbin/jk_chrootsh.*|#&|" /etc/shells ;\
	fi \
fi

