Ken Moore
c5bf944017
[API CHANGE] Add a new API call for sysadm/update: action="applyupdate".
...
This takes no other inputs, and returns the following:
{
"applyupdate" : {
"result" : "rebooting to apply updates"
}
}
2017-11-17 15:58:37 -05:00
q5sys
2157dbb6c2
add new library files
2017-11-02 11:52:07 -04:00
q5sys
d07658ee21
more api work for sourcectl
2017-11-02 11:48:25 -04:00
q5sys
355b47d93a
cut old source source from systemmanager.cpp
2017-11-02 10:10:56 -04:00
q5sys
62655ebd41
backend work for source control api
2017-11-02 10:02:03 -04:00
Ken Moore
ce53715265
Make sure the system update check is done via a DISPATCHER process.
...
This prevent possible hangs in the main server thread from the health check, and also ensures that the system update check API call can now return a new "checkingforupdates" status.
2017-10-27 13:35:42 -04:00
Ken Moore
4247c3529a
[API CHANGE] New API call: sysadm/moused, action="get_synaptics_options"
...
No other input arguments required.
This will return any additional options that are available through the "synaptics" driver system (typically used for laptops).
REST Request (example):
-------------------------------
PUT /sysadm/moused
{
"action" : "get_synaptics_options"
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"args" : {
"action" : "get_synaptics_options"
},
"name" : "moused",
"namespace" : "sysadm"
}
Response:
-------------------------------
{
"args": {
"get_synaptics_options": {
"disable_touchpad": "false",
"enable_synaptics": "false",
"enable_two_finger_scroll": "false"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-26 13:32:43 -04:00
Ken Moore
bb1ec413eb
[API CHANGE] sysadm/moused, action="set_tap_to_click"
...
Inputs (at least one required):
"enable" = "true" or "false" : Turn tap to click on or off
"timeout" = "[positive integer]" : Modify the timeout value (0 is sometimes used to disable tap-to-click)
REST Request (example):
-------------------------------
PUT /sysadm/moused
{
"timeout" : "0",
"action" : "set_tap_to_click"
}
WebSocket Request:
-------------------------------
{
"namespace" : "sysadm",
"name" : "moused",
"args" : {
"timeout" : "0",
"action" : "set_tap_to_click"
},
"id" : "fooid"
}
Response:
-------------------------------
{
"args": {
"set_tap_to_click": {
"timeout": "0"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-26 13:27:51 -04:00
Ken Moore
d7ddcb5ae0
[API CHANGE] New API call: sysadm/moused, action="get_tap_to_click"
...
No other input arguments
This returns the information about the current settings of "tap-to-click" for laptop touchpads.
REST Request (example):
-------------------------------
PUT /sysadm/moused
{
"action" : "get_tap_to_click"
}
WebSocket Request:
-------------------------------
{
"args" : {
"action" : "get_tap_to_click"
},
"name" : "moused",
"namespace" : "sysadm",
"id" : "fooid"
}
Response:
-------------------------------
{
"args": {
"get_tap_to_click": {
"enabled": "unavailable",
"timeout": "125000",
"using_synaptics": "false"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-26 12:55:07 -04:00
Ken Moore
654b1a72d5
Add another quick error detection flag to the new "getsysctl" action in the system manager.
2017-10-26 11:17:25 -04:00
Ken Moore
3cb89665b7
Compress the batteryInfo function into a single "apm" process call instead of 3 of them.
2017-10-26 09:59:10 -04:00
Ken Moore
5807bedd68
[API CHANGE] New API call: sysadm/systemmanager, action="getsysctl"
...
Required arguments: "sysctl" (string or array of strings)
This will report back the value of the requested sysctl(s).
REST Request (example):
-------------------------------
PUT /sysadm/systemmanager
{
"action" : "getsysctl",
"sysctl" : [
"hw.usb.atp.touch_timeout",
"hw.psm.tap_timeout"
]
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"name" : "systemmanager",
"namespace" : "sysadm",
"args" : {
"action" : "getsysctl",
"sysctl" : [
"hw.usb.atp.touch_timeout",
"hw.psm.tap_timeout"
]
}
}
Response:
-------------------------------
{
"args": {
"getsysctl": {
"hw.psm.tap_timeout": "125000",
"hw.usb.atp.touch_timeout": "125000"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-26 09:26:51 -04:00
Ken Moore
2240fdd8c7
[API CHANGE] Adjust the output structure for the "sysctllist" action in the system manager.
...
The output now returns objects with value, type, and description of each sysctl instead of just the values.
REST Request (example):
-------------------------------
PUT /sysadm/systemmanager
{
"action" : "sysctllist"
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"namespace" : "sysadm",
"args" : {
"action" : "sysctllist"
},
"name" : "systemmanager"
}
Response:
-------------------------------
{
"args": {
"sysctllist": {
"compat.ia32.maxdsiz": {
"type": "unsigned long",
"value": "536870912"
},
"compat.ia32.maxssiz": {
"type": "unsigned long",
"value": "67108864"
},
"compat.ia32.maxvmem": {
"type": "unsigned long",
"value": "0"
},
"compat.linux.osname": {
"description": "Linux kernel OS name",
"type": "string",
"value": "Linux"
},
"compat.linux.osrelease": {
"description": "Linux kernel OS release",
"type": "string",
"value": "2.6.32"
},
"compat.linux.oss_version": {
"description": "Linux OSS version",
"type": "integer",
"value": "198144"
}
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-26 09:10:02 -04:00
Ken Moore
52ae9e8e5c
Add ability to specify working directory to the dispatcher, and update the new fetch_ports API call.
2017-10-04 10:56:43 -04:00
Ken Moore
068ef24a66
Enable a new API call:
...
sysadm/systemmanager - "action" = "fetch_ports"
OPTIONAL argument: "ports_dir" = directory to place the ports tree
REST Request (example):
-------------------------------
PUT /sysadm/systemmanager
{
"action" : "fetch_ports"
}
WebSocket Request:
-------------------------------
{
"namespace" : "sysadm",
"args" : {
"action" : "fetch_ports"
},
"name" : "systemmanager",
"id" : "fooid"
}
Response:
-------------------------------
{
"args": {
"fetch_ports": {
"process_id": "system_fetch_ports_tree",
"result": "process_started"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-10-04 10:37:11 -04:00
Ken Moore
fba91d29c9
Enable/clean the backend functio
2017-10-04 10:31:49 -04:00
Ken Moore
a239e43c05
Add a new option to the moused options:
...
"mouse_scroll_invert" = [true/false]
This will invert the scroll direction for the mouse device.
2017-09-15 09:31:53 -04:00
Ken Moore
991dcdd2f9
Merge branch 'master' of github.com:trueos/sysadm
2017-08-25 09:25:55 -04:00
Ken Moore
e9a338fa0f
Make sure that pc-updatemanager syncconf is always run before any automated update checks begin.
2017-08-25 09:25:18 -04:00
ZackaryWelch
6447b0fed1
Moved the SysAdm client manpage to the client repo
2017-08-24 13:21:10 -04:00
ZackaryWelch
cf5b11a539
Added a man page for the sysadm cli client
2017-08-24 11:26:23 -04:00
Tim Moore
93f4d89b7d
Remove (Coming Soon) from SysAdm issues tracker
2017-08-21 12:27:56 -04:00
Ken Moore
4e23691d50
Commit some more work on an /etc/rc.conf writing routine for networking.
...
Not enabled for API calls yet.
2017-08-10 14:53:30 -04:00
Ken Moore
376eaa4e37
[API CHANGE] Add a new action for sysadm/network class:
...
"action" = "list-settings"
List all the settings for network devices that are saved in /etc/rc.conf
-----------------
REST Request (example):
-------------------------------
PUT /sysadm/network
{
"action" : "list-settings"
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"namespace" : "sysadm",
"args" : {
"action" : "list-settings"
},
"name" : "network"
}
Response:
-------------------------------
{
"args": {
"lo0": {
"associated_device": "",
"device": "lo0",
"static_gateway": "",
"static_ipv4": "",
"static_ipv6": "",
"static_netmask": "",
"use_dhcp": "false"
},
"re0": {
"associated_device": "",
"device": "re0",
"static_gateway": "",
"static_ipv4": "",
"static_ipv6": "",
"static_netmask": "",
"use_dhcp": "true"
},
"ue0": {
"associated_device": "",
"device": "ue0",
"static_gateway": "",
"static_ipv4": "",
"static_ipv6": "",
"static_netmask": "",
"use_dhcp": "true"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-08-10 13:51:35 -04:00
Ken Moore
4dded17898
Important update to pkg backend:
...
1) Change the API calls to all be name-based instead of origin-based
2) This fixes the detection/viewing of base packages
3) This makes the AppCafe 100% ready for the flavours/subpackages which is coming from upstream pkg sometime soon.
2017-08-10 10:38:32 -04:00
Ken Moore
6ab7c3dc01
Adjust the logic of the dispatcher processes a bit:
...
For the incremental process notifications, only include the latest output from the process, not the full thing up to that point. Some processes (life preserver, pc-updatemanager) run for a long time and eventually get massive log files.
2017-08-07 11:52:06 -04:00
Ken Moore
34b388277d
[API CHANGE] Add a new "action" for sysadm/systemmanager
...
"action"="deviceinfo" will return the full information about all devices attached to the system (via `pciconf -lv`)
-------------------
REST Request (example):
-------------------------------
PUT /sysadm/systemmanager
{
"action" : "deviceinfo"
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"name" : "systemmanager",
"namespace" : "sysadm",
"args" : {
"action" : "deviceinfo"
}
}
Response:
-------------------------------
{
"args": {
"deviceinfo": {
"ahci0": {
"class": "mass storage",
"device": "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]",
"subclass": "SATA",
"vendor": "Intel Corporation"
},
"ehci0": {
"class": "serial bus",
"device": "8 Series/C220 Series Chipset Family USB EHCI",
"subclass": "USB",
"vendor": "Intel Corporation"
},
"ehci1": {
"class": "serial bus",
"device": "8 Series/C220 Series Chipset Family USB EHCI",
"subclass": "USB",
"vendor": "Intel Corporation"
},
"hdac0": {
"class": "multimedia",
"subclass": "HDA",
"vendor": "NVIDIA Corporation"
},
"hdac1": {
"class": "multimedia",
"device": "8 Series/C220 Series Chipset High Definition Audio Controller",
"subclass": "HDA",
"vendor": "Intel Corporation"
},
"hostb0": {
"class": "bridge",
"device": "4th Gen Core Processor DRAM Controller",
"subclass": "HOST-PCI",
"vendor": "Intel Corporation"
},
"isab0": {
"class": "bridge",
"device": "B85 Express LPC Controller",
"subclass": "PCI-ISA",
"vendor": "Intel Corporation"
},
"none0": {
"class": "simple comms",
"device": "8 Series/C220 Series Chipset Family MEI Controller",
"vendor": "Intel Corporation"
},
"none1": {
"class": "serial bus",
"device": "8 Series/C220 Series Chipset Family SMBus Controller",
"subclass": "SMBus",
"vendor": "Intel Corporation"
},
"pcib1": {
"class": "bridge",
"device": "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller",
"subclass": "PCI-PCI",
"vendor": "Intel Corporation"
},
"pcib2": {
"class": "bridge",
"device": "8 Series/C220 Series Chipset Family PCI Express Root Port",
"subclass": "PCI-PCI",
"vendor": "Intel Corporation"
},
"pcib3": {
"class": "bridge",
"device": "8 Series/C220 Series Chipset Family PCI Express Root Port",
"subclass": "PCI-PCI",
"vendor": "Intel Corporation"
},
"pcib4": {
"class": "bridge",
"device": "8 Series/C220 Series Chipset Family PCI Express Root Port",
"subclass": "PCI-PCI",
"vendor": "Intel Corporation"
},
"pcib5": {
"class": "bridge",
"device": "82801 PCI Bridge",
"subclass": "PCI-PCI",
"vendor": "Intel Corporation"
},
"re0": {
"class": "network",
"device": "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller",
"subclass": "ethernet",
"vendor": "Realtek Semiconductor Co., Ltd."
},
"vgapci0": {
"class": "display",
"device": "GM206 [GeForce GTX 960]",
"subclass": "VGA",
"vendor": "NVIDIA Corporation"
},
"xhci0": {
"class": "serial bus",
"device": "8 Series/C220 Series Chipset Family USB xHCI",
"subclass": "USB",
"vendor": "Intel Corporation"
}
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-08-02 11:14:38 -04:00
Ken Moore
00251895a3
[API CHANGE] Add a new "pkg_install_verify" action to sysadm/pkg
...
Add an "action" = "pkg_install_verify" option to the sysadm/pkg API call.
REQUIRED: "pkg_origins" - string or array of pkg origins
"repo" - remote repository that the package will be installed from.
----------
REST Request (example):
-------------------------------
PUT /sysadm/pkg
{
"repo" : "trueos-major",
"action" : "pkg_install_verify",
"pkg_origins" : [
"www/qupzilla-qt5-webkit"
]
}
WebSocket Request:
-------------------------------
{
"name" : "pkg",
"namespace" : "sysadm",
"id" : "fooid",
"args" : {
"action" : "pkg_install_verify",
"pkg_origins" : [
"www/qupzilla-qt5-webkit"
],
"repo" : "trueos-major"
}
}
Response:
-------------------------------
{
"args": {
"pkg_install_verify": {
"conflicts": [],
"install": {
"qupzilla-qt5-webkit": {
"comment": "Web browser based on WebKit engine and Qt Framework",
"flatsize": "13380132",
"name": "qupzilla-qt5-webkit",
"origin": "www/qupzilla-qt5-webkit",
"pkgsize": "2574460",
"version": "1.8.9_3"
}
}
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-08-01 13:08:51 -04:00
Ken Moore
09c41edaca
Clean up some more whitespace in sysadm server files.
2017-07-27 15:19:54 -04:00
Ken Moore
4a866b924f
Disable some debug statements that were dumping Life Preserver logs into the webserver log file.
2017-07-27 15:14:22 -04:00
Ken Moore
58d309031f
Fix up a couple Qt5 dependencies in the sysutils/sysadm port.
2017-07-07 09:11:06 -04:00
Ken Moore
e78f6a003f
Merge branch 'master' of github.com:trueos/sysadm
2017-07-03 10:36:52 -04:00
Ken Moore
724c8ac7a8
Cleanup some whitespace in SysAdm files while I was looking for something...
2017-07-03 10:36:21 -04:00
q5sys
c4750152a6
prototype sourcetree management for sysadm
2017-06-05 11:40:50 -04:00
q5sys
a0a585353c
a few additions to sysadm-general
2017-06-05 10:41:40 -04:00
Ken Moore
3276b32f80
NEW API: sysadm/iocage "action"="cleantemplates"
...
This will delete all templates which have been cached on the local system.
-----------
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"action" : "cleantemplates"
}
WebSocket Request:
-------------------------------
{
"namespace" : "sysadm",
"args" : {
"action" : "cleantemplates"
},
"id" : "fooid",
"name" : "iocage"
}
Response:
-------------------------------
{
"args": {
"cleantemplates": {
"success": "All templates have been cleaned."
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-06-02 11:13:29 -04:00
Ken Moore
c744785115
New API: sysadm/iocage "action"="cleanreleases"
...
This will remove all the RELEASE's which have been downloaded/cached on the local system.
----------
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"action" : "cleanreleases"
}
WebSocket Request:
-------------------------------
{
"namespace" : "sysadm",
"args" : {
"action" : "cleanreleases"
},
"id" : "fooid",
"name" : "iocage"
}
Response:
-------------------------------
{
"args": {
"cleanreleases": {
"success": "All RELEASEs have been cleaned."
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-06-02 11:11:46 -04:00
Ken Moore
acbf8d6730
Adjust the fetch plugin function to use the new syntax that brandon just committed upstream (did not work properly anyway with the old syntax)
2017-06-02 10:29:52 -04:00
Ken Moore
b428fb531a
NEW API: sysadm/iocage "action"="createplugin"
...
This will fetch/create a new plugin jail.
Required Arguements:
"action"="createplugin"
"plugin"="name_of_plugin"
"net_device"="network_device_to_use"
"ip4" *or* "ip6" with the address to assign to the new jail (IPv4 or IPv6 address)
Changelog: yes
------------
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"plugin" : "gitlab",
"net_device" : "re0",
"action" : "createplugin",
"ip4" : "10.20.0.130"
}
WebSocket Request:
-------------------------------
{
"id" : "fooid",
"name" : "iocage",
"args" : {
"ip4" : "10.20.0.130",
"plugin" : "gitlab",
"net_device" : "re0",
"action" : "createplugin"
},
"namespace" : "sysadm"
}
Response:
-------------------------------
{
"args": {
"createplugin": {
"started_dispatcher_id": "sysadm_iocage_fetch_plugin_gitlab"
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-06-02 09:52:53 -04:00
Ken Moore
737e90c42a
NEW API CALL: sysadm/iocage "action"="fetchreleases"
...
This will fetch any remotely-available FreeBSD releases and update/cache them on the local system for use when spinning up jails.
REQUIRED ARGUMENTS:
"action" = "fetchreleases"
"releases": String *or* Array of strings containing the version/release to fetch.
Changelog: yes
-----------------
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"action" : "fetchreleases",
"releases" : [
"10.3-RELEASE",
"10.2-RELEASE"
]
}
WebSocket Request:
-------------------------------
{
"args" : {
"releases" : [
"10.3-RELEASE",
"10.2-RELEASE"
],
"action" : "fetchreleases"
},
"name" : "iocage",
"namespace" : "sysadm",
"id" : "fooid"
}
Response:
-------------------------------
{
"args": {
"fetchreleases": {
"started_dispatcher_id": [
"sysadm_iocage_fetch_release_10.3-RELEASE",
"sysadm_iocage_fetch_release_10.2-RELEASE"
]
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
2017-06-02 08:24:45 -04:00
Ken Moore
a3c44a5f5b
NEW API: sysadm/iocage "action"="listjails"
...
This will list all the current jails on the system.
Output syntax is almost exactly the same as the listtemplates action:
{
"listjails":{
"jails:{
"jid_1":{
[same 10 fields: jid, uuid, boot, state, tag, type, release, ip4, ip6, template]
},
"jid_2":{
[same 10 fields]
}
}
}
}
2017-06-01 16:13:34 -04:00
Ken Moore
fdd864e298
NEW API: sysadm/iocage "action"="listtemplates"
...
This will list all the jail templates currently available on the local system.
Example Arguments Reply:
{
"listtemplates":{
"templates" : {
"template_1" : {
"jid" : "jail_id",
"uuid": "unique_id_string",
"boot": "on/off",
"state":"jail_state",
"tag":"jail_tag",
"type":"jail_type",
"release":"freebsd_release",
"ip4":"ipv4_address",
"ip6":"ipv6_address",
"template":"template_1"
}
}
}
}
2017-06-01 16:04:01 -04:00
Ken Moore
4333ac6fba
API Adjustment: sysadm/iocage "action"="listplugins"
...
Adjust the output syntax to also include "local" plugins (those already installed). The "remote" plugin format is unchanged.
Output Arguments example:
{
"listplugins":{
"remote" : { [same as before] },
"local" : {
"pluginname_jid" : {
"jid" : "number",
"uuid" : "uuid_string",
"boot" : "on/off",
"state" : "activestate",
"tag" : "pluginname",
"type" : "plugin",
"release" : "freebsd_release",
"ip4" : "ipv4_address",
"ip6" : "ipv6_address",
"template" : "-"
}
}
}
}
2017-06-01 15:34:26 -04:00
Ken Moore
859b441ae2
New API Call: sysadm/iocage "action"="activatestatus"
...
This will list the current pool which is activated for iocage to use.
Example API return (arguments):
{
"activatestatus":{
"activated":"true",
"pool":"my_zpool"
}
}
Changelog: yes
2017-06-01 13:50:10 -04:00
Ken Moore
ebae121639
Start fixing up the iocage plugin fetch function - not working yet.
2017-05-31 14:34:54 -04:00
Ken Moore
2bf23b8aaf
API Change: sysadm/iocage - "action"="listreleases"
...
Add an API call for listing all the FreeBSD releases supported for iocage jails
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"action" : "listreleases"
}
WebSocket Request:
-------------------------------
{
"args" : {
"action" : "listreleases"
},
"name" : "iocage",
"id" : "fooid",
"namespace" : "sysadm"
}
Response:
-------------------------------
{
"args": {
"listreleases": {
"local": [
""
],
"remote": [
"9.3-RELEASE (EOL)",
"10.1-RELEASE (EOL)",
"10.2-RELEASE (EOL)",
"10.3-RELEASE",
"11.0-RELEASE"
]
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
Changelog: yes
2017-05-31 14:24:21 -04:00
Ken Moore
f1c3651ba5
API CHANGE: sysadm/iocage - "action"="listplugins"
...
Add this API call to list all the available plugins for iocage.
REST Request (example):
-------------------------------
PUT /sysadm/iocage
{
"action" : "listplugins"
}
WebSocket Request:
-------------------------------
{
"namespace" : "sysadm",
"args" : {
"action" : "listplugins"
},
"name" : "iocage",
"id" : "fooid"
}
Response:
-------------------------------
{
"args": {
"listplugins": {
"remote": {
"btsync": {
"description": "Resilient, fast and scalable file sync software for enterprises and individuals.",
"id": "btsync",
"name": "BitTorrent Sync"
},
"couchpotato": {
"description": "CouchPotato is an automatic NZB and torrent downloader.",
"id": "couchpotato",
"name": "CouchPotato"
},
"crashplan": {
"description": "Computer backup and data storage made simple.",
"id": "crashplan",
"name": "Crashplan"
},
"deluge": {
"description": "Bittorrent client using Python, and libtorrent-rasterbar",
"id": "deluge",
"name": "Deluge"
},
"emby": {
"description": "Home media server built using mono and other open source technologies",
"id": "emby",
"name": "Emby"
},
"gitlab": {
"description": "Powerful features for modern software development",
"id": "gitlab",
"name": "GitLab"
},
"jenkins": {
"description": "Jenkins CI",
"id": "jenkins",
"name": "Jenkins"
},
"jenkins-lts": {
"description": "Jenkins CI (Long Term Support Version)",
"id": "jenkins-lts",
"name": "Jenkins (LTS)"
},
"madsonic": {
"description": "Open-source web-based media streamer and jukebox.",
"id": "madsonic",
"name": "MadSonic"
},
"nextcloud": {
"description": "Access, share and protect your files, calendars, contacts, communication & more at home and in your enterprise.",
"id": "nextcloud",
"name": "NextCloud"
},
"plexmediaserver": {
"description": "The Plex media server system",
"id": "plexmediaserver",
"name": "Plex Media Server"
},
"plexmediaserver-plexpass": {
"description": "The Plex media server system",
"id": "plexmediaserver-plexpass",
"name": "Plex Media Server (PlexPass)"
},
"quasselcore": {
"description": "Quassel Core is a daemon/headless IRC client, part of Quassel, that supports 24/7 connectivity. Quassel Client can be attached to it to.",
"id": "quasselcore",
"name": "Quasselcore"
},
"sickrage": {
"description": "Automatic Video Library Manager for TV Shows",
"id": "sickrage",
"name": "SickRage"
},
"sonarr": {
"description": "PVR for Usenet and BitTorrent users",
"id": "sonarr",
"name": "Sonarr"
},
"subsonic": {
"description": "Open-source web-based media streamer and jukebox.",
"id": "subsonic",
"name": "SubSonic"
},
"syncthing": {
"description": "Personal cloud sync",
"id": "syncthing",
"name": "Syncthing"
},
"transmission": {
"description": "Fast and lightweight daemon BitTorrent client",
"id": "transmission",
"name": "Transmission"
}
}
}
},
"id": "fooid",
"name": "response",
"namespace": "sysadm"
}
Changelog: yes
2017-05-31 14:19:10 -04:00
Ken Moore
35759b12a1
Merge branch 'master' of github.com:trueos/sysadm
2017-05-30 11:46:59 -04:00
Ken Moore
0e2d941ae1
Add the qMDNS class to SysAdm's backend source tree (not tied in yet)
2017-05-30 11:46:31 -04:00
Tim Moore
2105b59780
Move TrueOS website link.
2017-05-19 14:33:21 -04:00