PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` #!/bin/sh # # filelimits Increase filesystem limits # # chkconfig: 2345 11 91 # description: Increases max open file limits # probe: false # Source function library. if [ -f /etc/init.d/functions ]; then . /etc/init.d/functions elif [ -f /etc/rc.d/init.d/functions ]; then . /etc/rc.d/init.d/functions else echo "Could not find functions file, your system may be broken" exit 1 fi # See how we were called. case "$1" in start) if [ -e "/usr/local/cpanel/scripts/increase_filesystem_limits" ]; then action "Increasing file system limits (v2)" /bin/true /usr/local/cpanel/scripts/increase_filesystem_limits else action "Increasing file system limits" /bin/true echo 131072 > /proc/sys/fs/file-max if [ -e "/proc/sys/fs/dquot-max" ]; then echo 16384 > /proc/sys/fs/dquot-max fi fi ;; stop) ;; restart) $0 stop $0 start ;; reload) $0 restart ;; *) echo "Usage: filelimits {start|stop|restart|reload}" exit 1 esac exit 0