chiark / gitweb /
man: bootchart: change /var/log to /run/log
authorWilliam Giokas <1007380@gmail.com>
Wed, 13 Feb 2013 20:49:24 +0000 (14:49 -0600)
committerAuke Kok <auke-jan.h.kok@intel.com>
Wed, 13 Feb 2013 23:26:55 +0000 (15:26 -0800)
As of [1], bootchart stores files in /run/log, not /var/log, by default.

[1] f2f85884caac671da84256acb44148df9a4dca70

man/bootchart.conf.xml
man/systemd-bootchart.xml
src/bootchart/README
src/bootchart/bootchart.conf
src/bootchart/svg.c

index 419554e2d1749d13017c5553b0c682abd36daf6f..fb6e274492f0e3dbfb516a1f560de9691bcb12b9 100644 (file)
                                 <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>
index 75341100f9b13b7039ece9f171d9ee84a3e69003..a3fea05b5c0b8e84aff7e62aa8b3fd362d24e186 100644 (file)
                                 <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>
index a209caf46bc5a872e187f715bcf12ca213471cf8..03b0fe95ee4f0e5397b1942a339cf8a5654741ca 100644 (file)
@@ -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.
 
 --
 
index fa1a09bd0a0a681ac1e330d8989fcbafa26900f3..079750436ab20ddb85e32a12ac98876bbbaa6f96 100644 (file)
@@ -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
index d7c4168d57a82414c2e453a60c50dcc1b8c67a14..6ad7348ecbe76ff7302821c614fa7809bed31af1 100644 (file)
@@ -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);