chore: initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?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));
|
||||
Reference in New Issue
Block a user