MOON
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4
System: Linux vps.panamaemb.org.sg 3.10.0-1160.80.1.vz7.191.4 #1 SMP Thu Dec 15 20:31:06 MSK 2022 x86_64
User: panama (500)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //proc/3/cwd/installd/bootstrap
#!/bin/sh

. ./VERSION
cat installlogo
cat <<EOF
  Installer Version $INSTALLER_VERSION r$REVISION

EOF

CWD=`pwd`

# Ensure Perl is available
if [ ! -e "/usr/bin/perl" -a -e "/usr/local/bin/perl" ]; then
    echo "Linking /usr/local/bin/perl to /usr/bin/perl"
    ln -s /usr/local/bin/perl /usr/bin/perl
fi
if [ ! -e "/usr/bin/perl" ]; then
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    echo "Fatal! Perl must be installed before proceeding!"
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    exit 1
fi

# Ensure perl version >= 5.6.0
PERLGOOD=`perl -e 'if(\$] < 5.006){print "no"}else{print "yes"}'`
if [ $PERLGOOD != "yes" ]; then
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    echo "perl 5.6.0 or greater is required at perl for installation"
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    exit 1
fi

echo "Beginning main installation."
exec ./install $*

# We now know Perl 5.6 is available. Run perl.
# NO OTHER checks should be in this file unless install cannot physically handle the check.