1 Star 0 Fork 1

jsyey/librenms

forked from 周滔/librenms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
delhost.php 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jellyfrog 提交于 2020-09-21 15:51 . Apply fixes from StyleCI (#12123)
#!/usr/bin/env php
<?php
/**
* LibreNMS
*
* This file is part of LibreNMS.
*
* @copyright (C) 2006 - 2012 Adam Armstrong
*/
$init_modules = [];
require __DIR__ . '/includes/init.php';
// Remove a host and all related data from the system
if ($argv[1]) {
$host = strtolower($argv[1]);
$id = getidbyname($host);
if ($id) {
echo delete_device($id) . "\n";
} else {
echo "Host doesn't exist!\n";
}
} else {
echo "Host Removal Tool\nUsage: ./delhost.php <hostname>\n";
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yeyong/librenms.git
git@gitee.com:yeyong/librenms.git
yeyong
librenms
librenms
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385