]> git.openstreetmap.org Git - chef.git/commitdiff
Fix planet mirror script run before new year planetdump
authorGrant Slater <git@firefishy.com>
Fri, 1 Jan 2016 13:46:43 +0000 (13:46 +0000)
committerGrant Slater <git@firefishy.com>
Fri, 1 Jan 2016 13:46:43 +0000 (13:46 +0000)
cookbooks/planet/templates/default/planet-mirror-redirect-update.erb

index c673998e66916e40997ebb694ecb03f00fdf7bee..2644889adff32e827dd1f929e45c87b3c328b76d 100644 (file)
@@ -11,7 +11,7 @@ $_YEAR = date('Y');
 $_PLANET_FOLDER = '<%= node[:planet][:dump][:xml_directory] %>/'.$_YEAR.'/';
 $_PLANET_REGEX = "/^(planet|changesets)\-\d{6}(\-nolt)?\.osm\.(bz2|gz)$/";
 $_MIRROR = 'http://ftp.heanet.ie/mirrors/openstreetmap.org/planet/'.$_YEAR.'/';
-$_PLANET_HTACCESS = realpath($_PLANET_FOLDER.'../..').'/.htaccess';
+$_PLANET_HTACCESS = realpath('<%= node[:planet][:dump][:xml_directory] %>/..').'/.htaccess';
 
 function _MIRROR_FILE_SIZE($url) {
        $ch = @curl_init();
@@ -34,9 +34,7 @@ if (is_dir($_PLANET_FOLDER)) {
                        if (preg_match($_PLANET_REGEX,$file)) {
                                $file_slashed = 'planet/'.$_YEAR.'/'.str_replace(array('.','-'), array('\.','\-'), $file);
                                if (strpos($htaccess_contents,$file_slashed) === false) {
-                                       //PHP IS BRAINDEAD filesize borked >4GB
-                                       //$file_size = $file_stats['size'];
-                                       $file_size = trim(`stat -c%s $_PLANET_FOLDER$file`);
+                                       $file_size = filesize($_PLANET_FOLDER$file);
                                        sleep(rand(2,5));
                                        $file_mirror_size = _MIRROR_FILE_SIZE($_MIRROR.$file);
                                        if ($file_size==$file_mirror_size) {