mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
journal-gatewayd: add --directory option (#3913)
Serve journals in the specified directory instead of default journals.
This commit is contained in:
parent
23dab159d7
commit
1aa1e59c7f
@ -100,6 +100,16 @@
|
||||
with <option>--cert=</option>.</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-D <replaceable>DIR</replaceable></option></term>
|
||||
<term><option>--directory=<replaceable>DIR</replaceable></option></term>
|
||||
|
||||
<listitem><para>Takes a directory path as argument. If
|
||||
specified, <command>systemd-journal-gatewayd</command> will serve the
|
||||
specified journal directory <replaceable>DIR</replaceable> instead of
|
||||
the default runtime and system journal paths.</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
<xi:include href="standard-options.xml" xpointer="help" />
|
||||
<xi:include href="standard-options.xml" xpointer="version" />
|
||||
</variablelist>
|
||||
|
@ -45,6 +45,7 @@
|
||||
static char *arg_key_pem = NULL;
|
||||
static char *arg_cert_pem = NULL;
|
||||
static char *arg_trust_pem = NULL;
|
||||
static char *arg_directory = NULL;
|
||||
|
||||
typedef struct RequestMeta {
|
||||
sd_journal *journal;
|
||||
@ -115,6 +116,9 @@ static int open_journal(RequestMeta *m) {
|
||||
if (m->journal)
|
||||
return 0;
|
||||
|
||||
if (arg_directory)
|
||||
return sd_journal_open_directory(&m->journal, arg_directory, 0);
|
||||
else
|
||||
return sd_journal_open(&m->journal, SD_JOURNAL_LOCAL_ONLY|SD_JOURNAL_SYSTEM);
|
||||
}
|
||||
|
||||
@ -878,7 +882,8 @@ static void help(void) {
|
||||
" --version Show package version\n"
|
||||
" --cert=CERT.PEM Server certificate in PEM format\n"
|
||||
" --key=KEY.PEM Server key in PEM format\n"
|
||||
" --trust=CERT.PEM Certificat authority certificate in PEM format\n",
|
||||
" --trust=CERT.PEM Certificat authority certificate in PEM format\n"
|
||||
" -D --directory=PATH Serve journal files in directory\n",
|
||||
program_invocation_short_name);
|
||||
}
|
||||
|
||||
@ -898,6 +903,7 @@ static int parse_argv(int argc, char *argv[]) {
|
||||
{ "key", required_argument, NULL, ARG_KEY },
|
||||
{ "cert", required_argument, NULL, ARG_CERT },
|
||||
{ "trust", required_argument, NULL, ARG_TRUST },
|
||||
{ "directory", required_argument, NULL, 'D' },
|
||||
{}
|
||||
};
|
||||
|
||||
@ -951,6 +957,9 @@ static int parse_argv(int argc, char *argv[]) {
|
||||
#else
|
||||
log_error("Option --trust is not available.");
|
||||
#endif
|
||||
case 'D':
|
||||
arg_directory = optarg;
|
||||
break;
|
||||
|
||||
case '?':
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user