21 lines
570 B
PHP
21 lines
570 B
PHP
<?php
|
|
|
|
// List of hosts to be able to wake up using Kratos.
|
|
// The first item in the array will be the default when hitting the kratos homepage, to
|
|
|
|
$hosts = array(
|
|
array(
|
|
"mac_address" => "64:16:7F:B1:D8:31",
|
|
"ip_address" => "10.0.0.1",
|
|
"name" => "gaia",
|
|
"friendly_name" => "Gaia (Home Server)"
|
|
),
|
|
array(
|
|
"mac_address" => "89:96:F3:36:D4:C4",
|
|
"ip_address" => "10.0.0.2",
|
|
"name" => "fedora",
|
|
"friendly_name" => "Fedora (Desktop)"
|
|
)
|
|
);
|
|
|
|
print_r(json_encode($hosts)); |