summaryrefslogtreecommitdiffstats
path: root/src/linux/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* #1065 src: add linux modeJose M. Guisado2021-11-151-0/+1
| | | | | | | | | | | | | | | | | | | | | ogClient can run in "linux" mode. In addition to live or virtual. Serves as a substitute to the legacy ogagent, which has not received any updates since 2020/07/23. Linux mode initially supports remote reboot and poweroff. Requires updated ogServer with the Linux ogclient state. ogClient can be set up to run in linux mode by specifying it in ogclient.json: { "opengnsys": { "ip": "192.168.56.10", "port": 8889, "log": "DEBUG", "mode": "linux", ... }
* Rename 'linux' folder and operations to 'live'Jose M. Guisado2020-12-031-7/+0
| | | | | | | | | | | ogLive related operations are named inside a 'Linux' folder, also its python class is named OgLinuxOperations. Rename every 'linux' occurrence with live to further clarify this folder and operations. - OgLinuxOperations -> OgLiveOperations - src/linux/ -> src/live/ Fixes: 1377acee ('Rename 'linux' mode to 'live' mode')
* Include License headerAlvaro Neira Ayuso2020-01-191-0/+7
|
* Add ogProcess and ogOperation for linuxAlvaro Neira Ayuso2020-01-191-0/+0
Thoses new classes allows us to process and execute commands from server side sent using HTTP format.