summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Giokas <1007380@gmail.com>2013-02-13 14:49:24 -0600
committerAuke Kok <auke-jan.h.kok@intel.com>2013-02-13 15:26:55 -0800
commit895aeb27795c00f365ce3b30b1dca549b4f5468e (patch)
treecf82b5b7d32330847f2de0790e87b351cdc0f220
parent3e37b970b5454863ca34bd96506c4f14804b2580 (diff)
man: bootchart: change /var/log to /run/log
As of [1], bootchart stores files in /run/log, not /var/log, by default. [1] f2f85884caac671da84256acb44148df9a4dca70
-rw-r--r--man/bootchart.conf.xml2
-rw-r--r--man/systemd-bootchart.xml2
-rw-r--r--src/bootchart/README2
-rw-r--r--src/bootchart/bootchart.conf2
-rw-r--r--src/bootchart/svg.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/man/bootchart.conf.xml b/man/bootchart.conf.xml
index 419554e2d1..fb6e274492 100644
--- a/man/bootchart.conf.xml
+++ b/man/bootchart.conf.xml
@@ -109,7 +109,7 @@
<term><varname>output=[path]</varname></term>
<listitem><para>Configures the output folder for writing
the graphs. By default, bootchart writes the graphs to
- <filename>/var/log</filename>.</para></listitem>
+ <filename>/run/log</filename>.</para></listitem>
</varlistentry>
<varlistentry>
diff --git a/man/systemd-bootchart.xml b/man/systemd-bootchart.xml
index 75341100f9..a3fea05b5c 100644
--- a/man/systemd-bootchart.xml
+++ b/man/systemd-bootchart.xml
@@ -138,7 +138,7 @@
<term><option>--output [path]</option></term>
<listitem><para>Configures the output folder for writing
the graphs. By default, bootchart writes the graphs to
- <filename>/var/log</filename>.</para></listitem>
+ <filename>/run/log</filename>.</para></listitem>
</varlistentry>
<varlistentry>
diff --git a/src/bootchart/README b/src/bootchart/README
index a209caf46b..03b0fe95ee 100644
--- a/src/bootchart/README
+++ b/src/bootchart/README
@@ -18,7 +18,7 @@ where possible problems exist in the startup sequence of the system.
Of course, bootchart can also be used at any moment in time to collect and
graph some data for an amount of time. Bootchart does not even require root
privileges to do so, and will happily run as a normal user. Bootchart graphs
-are by default written time-stamped in /var/log.
+are by default written time-stamped in /run/log.
--
diff --git a/src/bootchart/bootchart.conf b/src/bootchart/bootchart.conf
index fa1a09bd0a..079750436a 100644
--- a/src/bootchart/bootchart.conf
+++ b/src/bootchart/bootchart.conf
@@ -12,7 +12,7 @@
#freq=25
#rel=0
#filter=1
-#output=<folder name, defaults to /var/log>
+#output=<folder name, defaults to /run/log>
#init=/path/to/init-binary
#pss=0
#entropy=0
diff --git a/src/bootchart/svg.c b/src/bootchart/svg.c
index d7c4168d57..6ad7348ecb 100644
--- a/src/bootchart/svg.c
+++ b/src/bootchart/svg.c
@@ -98,7 +98,7 @@ static void svg_header(void)
svg("<!-- such as Chrome, Chromium, or Firefox. Other applications that -->\n");
svg("<!-- render these files properly but more slowly are ImageMagick, gimp, -->\n");
svg("<!-- inkscape, etc. To display the files on your system, just point -->\n");
- svg("<!-- your browser to file:///var/log/ and click. This bootchart was -->\n\n");
+ svg("<!-- your browser to file:///run/log/ and click. This bootchart was -->\n\n");
svg("<!-- generated by bootchart version %s, running with options: -->\n", VERSION);
svg("<!-- hz=\"%f\" n=\"%d\" -->\n", hz, len);