mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-04 00:53:04 -08:00
33 lines
739 B
PHP
33 lines
739 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
$ip = $_POST['ip'];
|
|
$action = $_POST['action'];
|
|
|
|
if ($_SESSION['user'] == 'admin') {
|
|
switch ($action) {
|
|
case 'reread IP': exec(VESTA_CMD."v-update-sys-ip", $output, $return_var);
|
|
header("Location: /list/ip/");
|
|
exit;
|
|
break;
|
|
case 'delete': $cmd='v-delete-sys-ip';
|
|
break;
|
|
default: header("Location: /list/ip/"); exit;
|
|
}
|
|
} else {
|
|
header("Location: /list/ip/");
|
|
exit;
|
|
}
|
|
|
|
foreach ($ip as $value) {
|
|
$value = escapeshellarg($value);
|
|
exec (VESTA_CMD.$cmd." ".$value, $output, $return_var);
|
|
}
|
|
|
|
header("Location: /list/ip/");
|