This commit is contained in:
crestAT
2016-02-08 06:01:53 +01:00
parent 7918d5791e
commit 3e693686e4
2 changed files with 7 additions and 3 deletions

1
README.md Normal file
View File

@@ -0,0 +1 @@
Description -> will follow soon!

View File

@@ -7,10 +7,13 @@ $release = explode("-", exec("uname -r"));
if ($release[0] >= 9.3) $verify_hostname = "--no-verify-hostname";
else $verify_hostname = "";
$return_val = mwexec("fetch {$verify_hostname} -vo onebuttoninstaller/onebuttoninstaller-install.php 'https://raw.github.com/crestAT/nas4free-onebuttoninstaller/master/onebuttoninstaller/onebuttoninstaller-install.php'", true);
$install_dir = dirname(__FILE__); // get directory where the installer script resides
if (!is_dir("{$install_dir}/onebuttoninstaller")) { mkdir("{$install_dir}/onebuttoninstaller", 0775, true); }
$return_val = mwexec("fetch {$verify_hostname} -vo {$install_dir}/onebuttoninstaller/onebuttoninstaller-install.php 'https://raw.github.com/crestAT/nas4free-onebuttoninstaller/master/onebuttoninstaller/onebuttoninstaller-install.php'", true);
if ($return_val == 0) {
chmod("onebuttoninstaller/onebuttoninstaller-install.php", 0775);
require_once("onebuttoninstaller/onebuttoninstaller-install.php");
chmod("{$install_dir}/onebuttoninstaller/onebuttoninstaller-install.php", 0775);
require_once("{$install_dir}/onebuttoninstaller/onebuttoninstaller-install.php");
}
else { echo "\nInstallation file 'onebuttoninstaller-install.php' not found, installation aborted!\n"; }
?>