Sophie

Sophie

distrib > Mandriva > mes5 > x86_64 > by-pkgid > b27a9804f8475618034d35341d729181 > files > 2

php-5.3.22-0.2mdvmes5.2.src.rpm

#!/bin/bash -e

max=1440

cur=$(sed -n -e 's/^[[:space:]]*session.gc_maxlifetime[[:space:]]*=[[:space:]]*\([0-9]\+\).*$/\1/p' /etc/php.d/*_session.ini 2>/dev/null || true);
[ -z "$cur" ] && cur=0
[ "$cur" -gt "$max" ] && max=$cur

echo $(($max/60))

exit 0