summaryrefslogtreecommitdiff
path: root/argv.custom.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:38:17 -0500
committerJeff Carr <[email protected]>2025-10-26 10:38:17 -0500
commit70a5101faf0411c0e803f2aa64405744b1bba978 (patch)
tree99e749fe7aebce87bcf78325de805d3accbd7aa2 /argv.custom.go
parenta6df82bab9df6af741c2e06956f20fc41ee2cfba (diff)
someday I'll get to work on virtigoHEADv0.1.63v0.1.62masterdevel
Diffstat (limited to 'argv.custom.go')
-rw-r--r--argv.custom.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/argv.custom.go b/argv.custom.go
deleted file mode 100644
index 04835d7..0000000
--- a/argv.custom.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package main
-
-var VERSION string
-var BUILDTIME string
-
-var APPNAME string = "virtigod"
-
-func (a args) Description() string {
- return `
- this daemon talks to virtigo talks to libvirt and/or qemu
-
-This sends data back to virtigo. It helps read out the libvirtxml
-and convert it to protobuf.
-The name is odd, it's virtigo-D not virti-god.
-
-You can query the status directly:
-
- # the list of running vms:
- curl --silent http://localhost:2520/vms
-
- # information about libvirt domain for vm 'coriolis':
- curl --silent http://localhost:2520/dumpdomain?domain=coriolis
-`
-}