Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schreiner <schreiner@suse.de>2016-04-01 10:14:45 +0300
committerFrank Schreiner <schreiner@suse.de>2016-04-01 10:14:45 +0300
commit96d4aaf4b0367f90a35d8924c02eafd8f518fbb7 (patch)
tree0da2bfe99404c412b5e5248156869493d44cee3d
parent62fe2ec375e6ac5b1efb3cb7d8ae835d2ae801cb (diff)
parentb206acaecf63841be81baf21bb1d62c92eee6ea0 (diff)
Merge branch 'split_option' of github.com:M0ses/createrepo_c into split_option
-rw-r--r--doc/createrepo_c.83
-rw-r--r--src/cmd_parser.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/createrepo_c.8 b/doc/createrepo_c.8
index 24b9edd..e1312ff 100644
--- a/doc/createrepo_c.8
+++ b/doc/createrepo_c.8
@@ -90,6 +90,9 @@ Optional output directory.
.SS \-S \-\-skip\-symlinks
.sp
Ignore symlinks of packages.
+.SS \-\-split
+.sp
+Run in split media mode. Rather than pass a single directory, take a set of directories corresponding to different volumes in a media set. Meta data is created in the first given directory
.SS \-\-changelog\-limit <number>
.sp
Only import the last N changelog entries, from each rpm, into the metadata.
diff --git a/src/cmd_parser.c b/src/cmd_parser.c
index 36242cc..866b7f6 100644
--- a/src/cmd_parser.c
+++ b/src/cmd_parser.c
@@ -107,7 +107,9 @@ static GOptionEntry cmd_entries[] =
"then the file is still the same (only use this if you're fairly "
"trusting or gullible).", NULL },
{ "split", 0, 0, G_OPTION_ARG_NONE, &(_cmd_options.split),
- "generate split media", NULL },
+ "Run in split media mode. Rather than pass a single directory, take a set of"
+ "directories corresponding to different volumes in a media set. "
+ "Meta data is created in the first given directory", NULL },
{ "pkglist", 'i', 0, G_OPTION_ARG_FILENAME, &(_cmd_options.pkglist),
"Specify a text file which contains the complete list of files to "
"include in the repository from the set found in the directory. File "