1OSTREE REMOTE(1) ostree remote OSTREE REMOTE(1)
2
3
4
6 ostree-remote - Control remote repository configuration
7
9 ostree remote add [OPTIONS...] {NAME} {URL} [BRANCH...]
10
11 ostree remote delete {NAME}
12
13 ostree remote show-url {NAME}
14
15 ostree remote list [OPTIONS...] {NAME}
16
17 ostree remote gpg-import [OPTIONS...] {NAME} [KEY-ID...]
18
19 ostree remote refs {NAME}
20
21 ostree remote summary [OPTIONS...] {NAME}
22
23 ostree remote add-cookie {NAME} {DOMAIN} {PATH} {COOKIE_NAME} {VALUE}
24
25 ostree remote delete-cookie {NAME} {DOMAIN} {PATH} {COOKIE_NAME}
26 {VALUE}
27
28 ostree remote list-cookies {NAME}
29
31 Changes remote repository configurations. The NAME refers to the name
32 of the remote.
33
34 The BRANCH arguments to the add subcommand specifies the configured
35 branches for the remote. See the branches section in ostree.repo-
36 config(5) for more information.
37
38 The gpg-import subcommand can associate GPG keys to a specific remote
39 repository for use when pulling signed commits from that repository (if
40 GPG verification is enabled).
41
42 The GPG keys to import may be in binary OpenPGP format or ASCII
43 armored. The optional [KEY-ID] list can restrict which keys are
44 imported from a keyring file or input stream. All keys are imported if
45 this list is omitted. If neither --keyring nor --stdin options are
46 given, then keys are imported from the user's personal GPG keyring.
47
48 The various cookie related command allow management of a remote
49 specific cookie jar.
50
52 --set="KEY=VALUE"
53 Set config option KEY=VALUE for remote.
54
55 --no-gpg-verify
56 Disable GPG verification.
57
58 --gpg-import=FILE
59 Import one or more GPG keys from a file.
60
61 Equivalent to ostree remote gpg-import --keyring=FILE.
62
63 --collection-id=COLLECTION-ID
64 Set the collection ID for the remote to a value provided by the
65 repository owner, which allows refs from this remote to be shared
66 peer to peer.
67
69 -u, --show-urls
70 Show remote URLs in list
71
73 -k, --keyring=FILE
74 Import one or more keys from a file.
75
76 This option may be repeated to import from multiple files, but may
77 not be used in combination with --stdin.
78
79 --stdin
80 Import one or more keys from standard input.
81
82 This option may not be used in combination with --keyring.
83
85 --raw
86 Show raw variant data
87
89 $ ostree remote show-url local
90
91 http://192.168.122.1/repo
92
93
94
95OSTree OSTREE REMOTE(1)