mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 10:37:42 -07:00
bulk update module
This commit is contained in:
parent
570d9325c5
commit
01d32a43e1
1 changed files with 24 additions and 0 deletions
24
web/bulk/vesta/index.php
Normal file
24
web/bulk/vesta/index.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
// Init
|
||||
error_reporting(NULL);
|
||||
ob_start();
|
||||
session_start();
|
||||
|
||||
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
||||
|
||||
$pkg = $_POST['pkg'];
|
||||
$action = $_POST['action'];
|
||||
|
||||
if ($_SESSION['user'] == 'admin') {
|
||||
switch ($action) {
|
||||
case 'update': $cmd='v-update-sys-vesta';
|
||||
break;
|
||||
default: header("Location: /list/updates/"); exit;
|
||||
}
|
||||
foreach ($pkg as $value) {
|
||||
$value = escapeshellarg($value);
|
||||
exec (VESTA_CMD.$cmd." ".$value, $output, $return_var);
|
||||
}
|
||||
}
|
||||
|
||||
header("Location: /list/updates/");
|
Loading…
Add table
Add a link
Reference in a new issue