1OSTREE REMOTE(1)                 ostree remote                OSTREE REMOTE(1)
2
3
4

NAME

6       ostree-remote - Control remote repository configuration
7

SYNOPSIS

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

DESCRIPTION

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

ADD OPTIONS

52       --set="KEY=VALUE"
53           Set config option KEY=VALUE for remote.
54
55       --if-not-exists
56           Do nothing if the provided remote exists.
57
58       --force
59           Replace the provided remote if it exists.
60
61       --no-gpg-verify
62           Disable GPG verification.
63
64       --gpg-import=FILE
65           Import one or more GPG keys from a file.
66
67           Equivalent to ostree remote gpg-import --keyring=FILE.
68
69       --collection-id=COLLECTION-ID
70           Set the collection ID for the remote to a value provided by the
71           repository owner, which allows refs from this remote to be shared
72           peer to peer.
73

LIST OPTIONS

75       -u, --show-urls
76           Show remote URLs in list
77

GPG-IMPORT OPTIONS

79       -k, --keyring=FILE
80           Import one or more keys from a file.
81
82           This option may be repeated to import from multiple files, but may
83           not be used in combination with --stdin.
84
85       --stdin
86           Import one or more keys from standard input.
87
88           This option may not be used in combination with --keyring.
89

SUMMARY OPTIONS

91       --raw
92           Show raw variant data
93

EXAMPLE

95       $ ostree remote show-url local
96
97                   http://192.168.122.1/repo
98
99
100
101OSTree                                                        OSTREE REMOTE(1)
Impressum