Skip to content

Commit a78abf8

Browse files
authored
Fixed ingest command invocation.
The following did not work for me: ``` gunzip -c cvmfs-tutorial-ingest-example-720k-files.tar.gz | sudo cvmfs_server ingest -b easybuild repo.organization.tld -t - The repository - does not exist. ``` But this did: ``` unzip -c cvmfs-tutorial-ingest-example-720k-files.tar.gz | sudo cvmfs_server ingest -t - -b easybuild repo.organization.tld ```
1 parent 754da00 commit a78abf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/04_publishing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ in CernVM-FS versions prior to 2.8.0 (see [here](https://github.com/cvmfs/cvmfs/
5959
In case you have a compressed tarball, you can use an appropriate decompression tool and write the output to `stdout`.
6060
This output can then be piped to `cvmfs_server` command while passing '`-`' to the `-t` option. For example, for a `.tar.gz` file:
6161
```bash
62-
gunzip -c mytarball.tar.gz | cvmfs_server ingest -b some/path -t -
62+
gunzip -c mytarball.tar.gz | cvmfs_server ingest -t - -b some/path repo.organization.tld
6363
```
6464

6565

0 commit comments

Comments
 (0)