chore: remove unused addstatus hostasctl command

This commit is contained in:
Nat 2024-09-01 14:57:47 -07:00
parent 54669d2d4b
commit cce480bad7
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
<?php
require_once('./public/config.php');
$uuid = shell_exec('uuidgen');
// Have the user write the content to a temporary file
$temp_file_name = sys_get_temp_dir() . '/' . $uuid;
shell_exec("vim $temp_file_name");
$content = file_get_contents($temp_file_name);
// Clean up
unlink($temp_file_name);
$object_id = 'https://' . HOSTAS_DOMAIN . "/api/v1/object/$uuid";
$preferred_username = readline('Author username: ');