Merge branch 'main' into wait-for-sbot
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
commit
40bd1e48f1
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -2322,7 +2322,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "peach-stats"
|
name = "peach-stats"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log 0.4.17",
|
"log 0.4.17",
|
||||||
"miniserde",
|
"miniserde",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "peach-stats"
|
name = "peach-stats"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["Andrew Reid <glyph@mycelial.technology>"]
|
authors = ["Andrew Reid <glyph@mycelial.technology>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Query system statistics. Provides a wrapper around the probes and systemstat crates."
|
description = "Query system statistics. Provides a wrapper around the probes and systemstat crates."
|
||||||
|
@ -44,8 +44,8 @@ impl SbotStat {
|
|||||||
pub fn sbot_stats() -> Result<SbotStat, StatsError> {
|
pub fn sbot_stats() -> Result<SbotStat, StatsError> {
|
||||||
let mut status = SbotStat::default();
|
let mut status = SbotStat::default();
|
||||||
|
|
||||||
let info_output = Command::new("/usr/bin/systemctl")
|
let info_output = Command::new("sudo")
|
||||||
.arg("--user")
|
.arg("systemctl")
|
||||||
.arg("show")
|
.arg("show")
|
||||||
.arg("go-sbot.service")
|
.arg("go-sbot.service")
|
||||||
.arg("--no-page")
|
.arg("--no-page")
|
||||||
@ -66,8 +66,8 @@ pub fn sbot_stats() -> Result<SbotStat, StatsError> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let status_output = Command::new("/usr/bin/systemctl")
|
let status_output = Command::new("sudo")
|
||||||
.arg("--user")
|
.arg("systemctl")
|
||||||
.arg("status")
|
.arg("status")
|
||||||
.arg("go-sbot.service")
|
.arg("go-sbot.service")
|
||||||
.output()
|
.output()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user