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 gpg-list-keys {NAME}
20
21       ostree remote refs {NAME}
22
23       ostree remote summary [OPTIONS...] {NAME}
24
25       ostree remote add-cookie {NAME} {DOMAIN} {PATH} {COOKIE_NAME} {VALUE}
26
27       ostree remote delete-cookie {NAME} {DOMAIN} {PATH} {COOKIE_NAME}
28                                   {VALUE}
29
30       ostree remote list-cookies {NAME}
31

DESCRIPTION

33       Changes remote repository configurations. The NAME refers to the name
34       of the remote.
35
36       The BRANCH arguments to the add subcommand specifies the configured
37       branches for the remote. See the branches section in ostree.repo-
38       config(5) for more information.
39
40       The gpg-import subcommand can associate GPG keys to a specific remote
41       repository for use when pulling signed commits from that repository (if
42       GPG verification is enabled). The gpg-list-keys subcommand can be used
43       to see the GPG keys currently associated with a remote repository.
44
45       The GPG keys to import may be in binary OpenPGP format or ASCII
46       armored. The optional [KEY-ID] list can restrict which keys are
47       imported from a keyring file or input stream. All keys are imported if
48       this list is omitted. If neither --keyring nor --stdin options are
49       given, then keys are imported from the user's personal GPG keyring.
50
51       The various cookie related command allow management of a remote
52       specific cookie jar.
53

ADD OPTIONS

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

LIST OPTIONS

78       -u, --show-urls
79           Show remote URLs in list
80

GPG-IMPORT OPTIONS

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

SUMMARY OPTIONS

94       --raw
95           Show raw variant data
96

EXAMPLE

98       $ ostree remote show-url local
99
100                   http://192.168.122.1/repo
101
102
103
104OSTree                                                        OSTREE REMOTE(1)
Impressum