Eric Callahan
9021fbea48
machine: use default password for validation
...
For legacy Raspberry Pi installations attempt to automate
the update using the default password.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-10-14 15:15:41 -04:00
Eric Callahan
41ea45a486
moonraker: remove alias option
...
Differentiate instances based on the data path provided.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-10-14 15:15:41 -04:00
Eric Callahan
266c5b53d1
machine: extend system info request with unit names
...
Report the unit names for both Moonarker and Klipper.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-10-14 15:15:41 -04:00
Eric Callahan
6e56815b42
machine: implement install validation
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-10-14 15:15:41 -04:00
Eric Callahan
db7474aa88
machine: use sudo password for commands if available
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 06:30:28 -04:00
Eric Callahan
272f7b946d
machine: add endpoint to check sudo access
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 05:59:38 -04:00
Eric Callahan
12161d12f5
machine: improve private ip detection
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 05:16:06 -04:00
Eric Callahan
4efb6575b7
machine: report provider type and container info
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 05:15:19 -04:00
Eric Callahan
c154d92499
machine: add support for setting a sudo password
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 05:13:44 -04:00
Eric Callahan
a7b50a8068
machine: extract moonraker systemd unit info
...
This allows moonraker to validate and log the current unit file.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-21 05:13:31 -04:00
Eric Callahan
3424f1b3e2
machine: fix IP detection broadcast setting
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-08 19:26:19 -04:00
Eric Callahan
c4e370fcff
machine: improve LAN IP detection
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-08-08 19:20:56 -04:00
Eric Callahan
bdd0222a1c
machine: handle exception if iwgetid fails
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-07-24 17:16:34 -04:00
Eric Callahan
3b76d81155
machine: add sonar and crowsnest to allowed services
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-06-07 06:51:40 -04:00
Eric Callahan
d3003a1584
machine: return default values for find public interface
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-04-15 17:27:36 -04:00
Eric Callahan
393cfa2a0e
machine: implement get_public_network method
...
This allows components to determine the current local
ip address that routes to the internet.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-04-04 17:18:02 -04:00
Eric Callahan
221df0937d
machine: fix typo in cpu description parser
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-03-02 19:25:53 -05:00
Eric Callahan
54f2ee61d0
machine: report the python version in system_info
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-02-23 12:01:50 -05:00
Eric Callahan
6aecd7b26d
machine: add "none" provider
...
When the "none" provider is set service action APIs will be disabled
and return an error when called. Service state tracking is also
disabled.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-01-28 18:00:21 -05:00
Eric Callahan
be338ad039
machine: add systemd dbus provider implmentation
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-01-28 18:00:21 -05:00
Eric Callahan
0d6791a320
machine: refactor systemd cli implementation
...
Move all systemd cli calls to its own provider class, inherted from
a base provider class. This is in preparation for multiple provider
implementations.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-01-28 18:00:21 -05:00
Eric Callahan
3e70e4b4ce
machine: report additional release info
...
Report information contained within a linux distribution's
release file if it exists.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-12-20 16:58:21 -05:00
Eric Callahan
ac73036857
machine: fix issues with network interface parsing
...
Don't parse non "ether" types. Don't add interfaces that don't
have mac addresses and at least one IP address.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-12-05 17:12:21 -05:00
Eric Callahan
76e431330c
machine: service unit detection fix
...
Add `--plain` and `--no-legend` to the command to list service units.
This fixes a bug where a service could be prefixed with a unique
character, resulting undetected services.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-11-26 09:02:05 -05:00
Eric Callahan
ccb86ea039
proc_stats: check for network updates every 10 seconds
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-11-25 08:18:24 -05:00
Eric Callahan
b33183f60f
machine: add support for parsing network info
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-11-25 07:58:25 -05:00
Clifford Roche
44abc64533
machine: add serial number attribute for cpu
...
Adds the property "serial_number" to the process info structure.
Signed-off-by: Clifford Roche <clifford.roche@gmail.com>
2021-11-22 14:00:34 -05:00
Eric Callahan
fd59ace4f8
machine: use component_init for post initialization
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-11-12 10:11:39 -05:00
Eric Callahan
105858b0c7
machine: fix perfomance regression
...
The `update_service_status()` method could result in the creation of multiple subprocesses for each update, resulting in a performance hit as subprocesses are inherently expensive.
Fetch the state for all detected services in a single subprocess.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-11-03 09:10:12 -04:00
Eric Callahan
2addf845d3
machine: add PNY to the list of known SD manufacturers
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-31 19:12:00 -04:00
Eric Callahan
28c8bf61da
machine: add a more robust container check
...
Most containers do not have access to systemd, so using
systemd-detect-virt will fail. We can check the cgroup
and sched files of the first process to reliably determine
if Moonraker is running within a container.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-28 19:38:15 -04:00
Eric Callahan
f35bceb309
machine: detect virtualized envronment
...
It isn't valid to run some commands from within containers. Use systmd-detect-virt to detect a virtualized environment and report the type and id via the system_info endpoint.
If Moonraker is running from within a container do not allow access to the reboot and shutdown endpoints.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-28 11:45:13 -04:00
Eric Callahan
12e035b6eb
machine: list all active units
...
This resolves an issue where an allowed service is not
tagged as available if it is not loaded when moonraker
starts.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-24 08:45:28 -04:00
Eric Callahan
a0b5275cc9
machine: add method to wait for service init
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-23 10:20:07 -04:00
Eric Callahan
8126a73663
machine: report active status of available services
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-10-23 10:20:07 -04:00
Eric Callahan
86764657cf
machine: add moonraker-telegram-bot to list of allowed services
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-09-29 18:08:08 -04:00
Eric Callahan
646e97ad55
machine: replace reference to ioloop with eventloop
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-07-12 06:16:18 -04:00
Eric Callahan
9ea91f4f5d
machine: report total memory from /proc/meminfo
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-06-10 19:58:11 -04:00
Eric Callahan
628c0193f3
machine: extend allowed services
...
Allow all services that start with a match.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-06-02 17:46:34 -04:00
Eric Callahan
def6b365fa
machine: fix service case sensitivity bug
...
Systemd units are case sensitive, do not convert the "name" argument for service requests to lower case.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-05-31 07:34:16 -04:00
Eric Callahan
1b3efb1a78
machine: add support for controlling MoonCord and KlipperScreen services
...
Provide a list of available services in the `/machine/system_info` endpoint.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-05-30 14:21:07 -04:00
Arksine
9994e1eb84
machine: Add annotations
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-05-18 19:16:49 -04:00
Arksine
24eaff6951
machine: add distribution to system info
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-04-26 12:08:52 -04:00
Arksine
5e87d8793d
machine: add support for retrieving CPU and SDCard info
...
Add this info to the log rollover so it is always visible.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-04-26 12:08:52 -04:00
Arksine
1dc920019c
moonraker: rename the "plugins" package to "components"
...
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2021-03-18 08:29:31 -04:00