X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e9d337c2a49d120a8dcb508879d74f6bab5b84d9..a6de17c0e01ffc29992c789da42ea1fe68370296:/cookbooks/planet/templates/default/planet-mirror-redirect-update.erb diff --git a/cookbooks/planet/templates/default/planet-mirror-redirect-update.erb b/cookbooks/planet/templates/default/planet-mirror-redirect-update.erb index 1f37ecd23..2644889ad 100644 --- a/cookbooks/planet/templates/default/planet-mirror-redirect-update.erb +++ b/cookbooks/planet/templates/default/planet-mirror-redirect-update.erb @@ -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 = $_PLANET_FOLDER.'../../.htaccess'; +$_PLANET_HTACCESS = realpath('<%= node[:planet][:dump][:xml_directory] %>/..').'/.htaccess'; function _MIRROR_FILE_SIZE($url) { $ch = @curl_init(); @@ -24,7 +24,7 @@ function _MIRROR_FILE_SIZE($url) { return ($curl_result['download_content_length']); } -if (posix_getuid() !== fileowner($_PLANET_HTACCESS)) die('User ID of process does not match .htaccess owner'."\n"); +if (!is_writable($_PLANET_HTACCESS)) die('File '.$_PLANET_HTACCESS.' is not writable by current user.'."\n"); if (is_dir($_PLANET_FOLDER)) { $htaccess_contents = file_get_contents($_PLANET_HTACCESS); @@ -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) { @@ -53,4 +51,3 @@ if (is_dir($_PLANET_FOLDER)) { fclose($htaccess_handle); } } -?>