summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO4
-rw-r--r--man/journald.conf.xml6
-rw-r--r--src/journal/journald.c10
-rw-r--r--src/journal/journald.h2
4 files changed, 11 insertions, 11 deletions
diff --git a/TODO b/TODO
index 8975ad0656..09b34e5fe2 100644
--- a/TODO
+++ b/TODO
@@ -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
diff --git a/man/journald.conf.xml b/man/journald.conf.xml
index f82130b9cf..36227092bb 100644
--- a/man/journald.conf.xml
+++ b/man/journald.conf.xml
@@ -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
diff --git a/src/journal/journald.c b/src/journal/journald.c
index 0629f79f1c..da9f52813d 100644
--- a/src/journal/journald.c
+++ b/src/journal/journald.c
@@ -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)
diff --git a/src/journal/journald.h b/src/journal/journald.h
index 34deb8561e..3537a49420 100644
--- a/src/journal/journald.h
+++ b/src/journal/journald.h
@@ -36,7 +36,7 @@
typedef enum Storage {
STORAGE_AUTO,
STORAGE_VOLATILE,
- STORAGE_PERMANENT,
+ STORAGE_PERSISTENT,
STORAGE_NONE,
_STORAGE_MAX,
_STORAGE_INVALID = -1