1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//! Linux-specific OS probes.
//!
//! All probes here are deliberately conservative: they read well-known
//! pseudo-files under `/proc` and `/etc`. If the kernel does not expose
//! the file (containers, sandboxes, tmpfs-only roots), the probe returns
//! a documented default rather than failing.
const OSRELEASE_PATH: &str = "/proc/sys/kernel/osrelease";
const OS_RELEASE_PATH: &str = "/etc/os-release";
/// Reads the running kernel release string from `/proc/sys/kernel/osrelease`.
///
/// Returns `"unknown"` when `/proc` is not mounted or the file cannot be
/// read (e.g. inside a minimal container).
pub
/// Parses `/etc/os-release` and returns the value of `ID=` (e.g.
/// `"ubuntu"`, `"arch"`, `"debian"`).
///
/// Returns `None` when the file is absent or contains no `ID=` line.
/// Surrounding quotes are stripped per the os-release spec.
pub