#!/bin/sh set -e runPosInst() { ## if [ -e /etc/shells ]; then grep -q '/usr/local/cpanel/bin/jailshell' /etc/shells \ || echo '/usr/local/cpanel/bin/jailshell' >> /etc/shells; fi ## } case "$1" in configure) runPosInst; ;; esac exit 0