1OSTREE CONFIG(1) ostree config OSTREE CONFIG(1)
2
3
4
6 ostree-config - Change configuration settings
7
9 ostree config get {GROUPNAME.KEYNAME}
10
11 ostree config get {--group=GROUPNAME} {KEYNAME}
12
13 ostree config set {GROUPNAME.KEYNAME} {VALUE}
14
15 ostree config set {--group=GROUPNAME} {KEYNAME} {VALUE}
16
17 ostree config unset {GROUPNAME.KEYNAME}
18
19 ostree config unset {--group=GROUPNAME} {KEYNAME}
20
22 • ostree config get displays the value of KEYNAME in the group
23 GROUPNAME
24
25 • ostree config set sets the value of KEYNAME in the group GROUPNAME
26 to VALUE.
27
28 • ostree config unset removes the key KEYNAME from the group
29 GROUPNAME so that OSTree uses the default value for it. It is not
30 an error for the specified GROUPNAME or KEYNAME not to exist.
31
33 $ ostree config get core.mode
34
35 bare
36
37 $ ostree config set --group='remote "myremote"' url
38 http://example.com/repo
39
40 $ ostree config unset core.lock-timeout-secs
41
42
43
44OSTree OSTREE CONFIG(1)