mirror of
https://github.com/crestAT/nas4free-onebuttoninstaller.git
synced 2026-03-21 17:26:12 +01:00
71 lines
2.8 KiB
Plaintext
71 lines
2.8 KiB
Plaintext
<?php
|
|
/*
|
|
universal postinit file for CLI extensions
|
|
|
|
Copyright (c) 2015 - 2020 Andreas Schmidhuber
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
require_once("config.inc");
|
|
|
|
$appName = "Midnight Commander";
|
|
$command = "mc-start.php";
|
|
$cmd = dirname(__FILE__)."/{$command}";
|
|
|
|
// remove start/stop commands
|
|
// remove existing old rc format entries
|
|
if (is_array($config['rc']) && is_array($config['rc']['postinit']) && is_array( $config['rc']['postinit']['cmd'])) {
|
|
$rc_param_count = count($config['rc']['postinit']['cmd']);
|
|
for ($i = 0; $i < $rc_param_count; $i++) {
|
|
if (preg_match("/{$command}/", $config['rc']['postinit']['cmd'][$i])) unset($config['rc']['postinit']['cmd'][$i]);
|
|
}
|
|
}
|
|
// remove existing entries for new rc format
|
|
if (is_array($config['rc']) && is_array($config['rc']['param']['0'])) {
|
|
$rc_param_count = count($config['rc']['param']);
|
|
for ($i = 0; $i < $rc_param_count; $i++) {
|
|
if (preg_match("/{$command}/", $config['rc']['param'][$i]['value'])) unset($config['rc']['param'][$i]);
|
|
}
|
|
}
|
|
|
|
// check FreeBSD release
|
|
$release = explode("-", exec("uname -r"));
|
|
|
|
if ($release[0] >= 11.0) { // new rc format
|
|
// postinit command
|
|
$rc_param = [];
|
|
$rc_param['uuid'] = uuid();
|
|
$rc_param['name'] = "{$appName} Extension";
|
|
$rc_param['value'] = "php {$cmd}";
|
|
$rc_param['comment'] = "Start {$appName}";
|
|
$rc_param['typeid'] = '2';
|
|
$rc_param['enable'] = true;
|
|
$config['rc']['param'][] = $rc_param;
|
|
}
|
|
else {
|
|
$config['rc']['postinit']['cmd'][] = "php {$cmd}";
|
|
}
|
|
write_config();
|
|
require_once($cmd);
|
|
?>
|