Path : /var/lib/dpkg/info/ |
Current File : //var/lib/dpkg/info/cpanel-wrap.postinst |
#!/bin/sh set -e runPosInst() { ## <asset scriplets/post> if [ -e /etc/shells ]; then grep -q '/usr/local/cpanel/bin/jailshell' /etc/shells \ || echo '/usr/local/cpanel/bin/jailshell' >> /etc/shells; fi ## </asset> } case "$1" in configure) runPosInst; ;; esac exit 0