CC-3572: pypo user should have shell set to /bin/false

-done
This commit is contained in:
Martin Konecny 2012-04-02 19:04:16 -04:00
parent 57f782d3c2
commit 162c35419d
7 changed files with 327 additions and 3 deletions

View file

@ -1,3 +1,3 @@
<?php
define('AIRTIME_VERSION', '2.0.2');
define('AIRTIME_VERSION', '2.0.3');

View file

@ -111,6 +111,10 @@ if (strcmp($version, "2.0.2") < 0){
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.0.2/airtime-upgrade.php");
pause();
}
if (strcmp($version, "2.0.3") < 0){
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.0.3/airtime-upgrade.php");
pause();
}
//set the new version in the database.
$sql = "DELETE FROM cc_pref WHERE keystr = 'system_version'";