aboutsummaryrefslogtreecommitdiff
path: root/src/conf/py-sample/conf.d/core.json
blob: 46d3feb8e3279ca0209f199a0f5ecb472b9dd053 (plain)
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
{
	"execs": [
		{
			"id": "tar",
			"argv": [ "/bin/tar", "--xattrs", "--selinux", "--warning=none", "-cf", "-" ],
			"ec": "<2"
		},
		{
			"id": "filter-xz-parallel",
			"argv": [ "/bin/xz", "-T0" ]
		},
		{
			"id": "filter-gzip-plain",
			"argv": [ "/bin/gzip" ]
		},
		{
			"id": "filter-zstd-plain",
			"argv": [ "/bin/zstd" ]
		},
		{
			"id": "filter-zstd-parallel",
			"argv": [ "/bin/zstd", "-T0" ]
		},
		{
			"id": "rpm-list-installed",
			"argv": [ "/bin/rpm", "-qa" ]
		},
		{
			"id": "dpkg-list-installed",
			"argv": [ "/bin/dpkg-query", "-l" ]
		},
		{
			"id": "lsblk-all-json",
			"argv": [ "/bin/lsblk", "-JbOa" ]
		},
		{
			"id": "os-release",
			"argv": [ "/bin/cat", "/etc/os-release" ]
		}
	]
}