mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-09 00:12:58 +02:00
605f67b935
git-svn-id: http://www.observium.org/svn/observer/trunk@1277 61d68cd4-352d-0410-923a-c4978735b2b8
16 lines
478 B
PHP
16 lines
478 B
PHP
<?php
|
|
|
|
function add_service($service) {
|
|
global $id;
|
|
global $hostname;
|
|
echo "$service ";
|
|
$sql = "INSERT INTO `services` (`device_id`,`service_ip`,`service_type`,`service_desc`,`service_param`,`service_ignore`)
|
|
VALUES ('" . mres($id). "','" . mres($hostname) . "','" . mres($service) . "',
|
|
'" . mres("auto discovered: $service") . "','" . mres("") . "','0')";
|
|
|
|
$query = mysql_query($sql);
|
|
}
|
|
|
|
|
|
?>
|