journald: use "persistent", not "permanent" as storage option

"permanent" is simply the wrong term and we use "persistant" in most
other contexts to correct this.
This commit is contained in:
Lennart Poettering 2012-07-10 19:39:27 +02:00
parent 805623aaa4
commit 205c4d1d6a
4 changed files with 11 additions and 11 deletions

4
TODO
View file

@ -34,6 +34,8 @@ Bugfixes:
Features:
* replace BindTo= by BindsTo=, but keep old name for compat
* switch-root: sockets need relabelling
* switch-root: handle journald restart
@ -42,8 +44,6 @@ Features:
* systemd-analyze post-boot is broken for initrd
* journal: s/permanent/persistant
* man: clarify that time-sync.target is not only sysv compat but also useful otherwise. Same for similar targets
* journalctl should complain if run with uid != 0 and no persistant logs exist

View file

@ -293,7 +293,7 @@
<listitem><para>Controls where to
store journal data. One of
<literal>volatile</literal>,
<literal>permanent</literal>,
<literal>persistent</literal>,
<literal>auto</literal> and
<literal>none</literal>. If
<literal>volatile</literal> journal
@ -302,7 +302,7 @@
<filename>/run/log/journal</filename>
hierarchy (which is created if
needed). If
<literal>permanent</literal> data will
<literal>persistent</literal> data will
be stored preferably on disk,
i.e. below the
<filename>/var/log/journal</filename>
@ -313,7 +313,7 @@
early boot and if the disk is not
writable. <literal>auto</literal> is
similar to
<literal>permanent</literal> but the
<literal>persistent</literal> but the
directory
<filename>/var/log/journal</filename>
is not created if needed, so that its

View file

@ -114,7 +114,7 @@ struct StdoutStream {
static const char* const storage_table[] = {
[STORAGE_AUTO] = "auto",
[STORAGE_VOLATILE] = "volatile",
[STORAGE_PERMANENT] = "permanent",
[STORAGE_PERSISTENT] = "persistent",
[STORAGE_NONE] = "none"
};
@ -1963,16 +1963,16 @@ static int system_journal_open(Server *s) {
sd_id128_to_string(machine, ids);
if (!s->system_journal &&
(s->storage == STORAGE_PERMANENT ||
(s->storage == STORAGE_PERSISTENT ||
s->storage == STORAGE_AUTO)) {
/* If in auto mode: first try to create the machine
* path, but not the prefix.
*
* If in permanent mode: create /var/log/journal and
* If in persistent mode: create /var/log/journal and
* the machine path */
if (s->storage & STORAGE_PERMANENT)
if (s->storage & STORAGE_PERSISTENT)
(void) mkdir("/var/log/journal/", 0755);
fn = strappend("/var/log/journal/", ids);
@ -2067,7 +2067,7 @@ static int server_flush_to_var(Server *s) {
assert(s);
if (s->storage != STORAGE_AUTO &&
s->storage != STORAGE_PERMANENT)
s->storage != STORAGE_PERSISTENT)
return 0;
if (!s->runtime_journal)

View file

@ -36,7 +36,7 @@
typedef enum Storage {
STORAGE_AUTO,
STORAGE_VOLATILE,
STORAGE_PERMANENT,
STORAGE_PERSISTENT,
STORAGE_NONE,
_STORAGE_MAX,
_STORAGE_INVALID = -1