12ca81
diff --git a/watchdog.8 b/watchdog.8
12ca81
index 9b7c6e7..052b1e1 100644
12ca81
--- a/watchdog.8
12ca81
+++ b/watchdog.8
12ca81
@@ -216,6 +216,7 @@ by
903fe0
 .BR watchdog .
903fe0
 So you can for instance restart the server from your
903fe0
 .IR repair-binary .
903fe0
+See the Systemd section below for additinal information.
903fe0
 .PP
903fe0
 .B watchdog
903fe0
 will try periodically to fork itself to see whether the process
12ca81
@@ -242,6 +243,8 @@ a given interface for traffic. If no traffic arrives the network is
903fe0
 considered unreachable causing a soft reboot or action from the
903fe0
 repair binary.
903fe0
 .PP
903fe0
+To start the watchdog when network is available see the Systemd section below.
903fe0
+.PP
903fe0
 .B watchdog
903fe0
 can run an external command for user-defined tests. A return code not equal 0
903fe0
 means an error occurred and watchdog should react. If the external command is
12ca81
@@ -348,6 +351,9 @@ Child process did not return in time.
903fe0
 246
903fe0
 Free for personal watchdog-specific use (was \-10 as an unsigned 8\-bit
903fe0
 number).
903fe0
+.PP
903fe0
+With enforcing SELinux policy please use the /usr/libexec/watchdog/scripts/
903fe0
+for your test-binary configuration.
903fe0
 .TP
903fe0
 245
903fe0
 Reserved for an unknown result, for example a slow background test that is
12ca81
@@ -375,6 +381,9 @@ repair-maximum
903fe0
 controls the number of successive repair attempts that report 0 (i.e. success) but
903fe0
 fail to clear the tested fault. If this is exceeded then a reboot takes place. If set
903fe0
 to zero then a reboot can always be blocked by the repair program reporting success.
903fe0
+.PP
903fe0
+With enforcing SELinux policy please use the /usr/libexec/watchdog/scripts/
903fe0
+for your repair-binary configuration.
903fe0
 .SH "TEST DIRECTORY"
903fe0
 Executables placed in the test directory are discovered by watchdog on
903fe0
 startup and are automatically executed.  They are bounded time-wise by
12ca81
@@ -413,6 +422,27 @@ As for the repair binary, the configuration parameter
903fe0
 repair-maximum
903fe0
 also controls the number of successive repair attempts that report success
903fe0
 (return 0) but fail to clear the fault.
903fe0
+.SH SYSTEMD
903fe0
+To start watchdog after the network is available:
903fe0
+.PP
903fe0
+.br
903fe0
+systemctl disable watchdog
903fe0
+.br
903fe0
+systemctl enable NetworkManager-wait-online
903fe0
+.br
903fe0
+systemctl enable watchdog-ping
903fe0
+.PP
903fe0
+
903fe0
+When using custom service pid check with custom service
903fe0
+systemd unit file please be aware the "Requires="
903fe0
+does dependent service deactivation.
903fe0
+Using "Before=watchdog.service" or "Before=watchdog-ping.service"
903fe0
+in the custom service unit file may be the desired operation instead.
903fe0
+See systemd.unit documentation for more details.
903fe0
+
903fe0
+.SH SELINUX
903fe0
+The directories /etc/watchdog.d/ and /usr/libexec/watchdog/scripts/ are
903fe0
+recognized locations for custom executables.
903fe0
 .SH BUGS
903fe0
 None known so far.
903fe0
 .SH AUTHORS
12ca81
@@ -431,4 +461,4 @@ The watchdog device.
903fe0
 The pid file of the running
903fe0
 .BR watchdog .
903fe0
 .SH "SEE ALSO"
903fe0
-.BR watchdog.conf (5)
903fe0
+.BR watchdog.conf (5), systemd.unit (5)
12ca81
diff --git a/watchdog.conf.5 b/watchdog.conf.5
12ca81
index edf7c8b..2803fee 100644
12ca81
--- a/watchdog.conf.5
12ca81
+++ b/watchdog.conf.5
12ca81
@@ -47,7 +47,7 @@ Be careful not to this parameter too low. To set a value less then the
12ca81
 predefined minimal value of 2, you have to use the \-f command line option.
12ca81
 .TP
12ca81
 min-memory = <minpage>
12ca81
-Set the minimal amount of memory that has to stay free. Note that
12ca81
+Set the minimal amount of virtual memory that has to stay free. Note that
12ca81
 this is in memory pages (4kB on x86). Default value is 0 pages which means
12ca81
 this test is disabled. The page size is taken from the system include files.
12ca81
 The usable memory is computed from MemFree + Buffers + Cached since buffer
12ca81
@@ -130,6 +130,7 @@ pidfile = <pidfilename>
12ca81
 Set pidfile name for daemon test mode.
12ca81
 This option can be given as often as you like to check several daemons, assuming
12ca81
 they write their post-forking PID to the specified files.
903fe0
+See the Systemd section in watchdog (8) for more information.
903fe0
 .TP
903fe0
 ping = <ip-addr>
903fe0
 Set IPv4 address for ping mode.
12ca81
@@ -147,6 +148,8 @@ aliased IP interfaces.
903fe0
 .TP
903fe0
 test-binary = <testbin>
903fe0
 Execute the given binary to do some user defined tests.
903fe0
+With enforcing SELinux policy please use the /usr/libexec/watchdog/scripts/
903fe0
+for your test-binary configuration.
903fe0
 .TP
903fe0
 test-timeout = <timeout in seconds>
903fe0
 User defined tests may only run for <timeout> seconds. Set to 0 for unlimited.
12ca81
@@ -154,6 +157,8 @@ User defined tests may only run for <timeout> seconds. Set to 0 for unlimited.
903fe0
 repair-binary = <repbin>
903fe0
 Execute the given binary in case of a problem instead of shutting down the
903fe0
 system.
903fe0
+With enforcing SELinux policy please use the /usr/libexec/watchdog/scripts/
903fe0
+for your repair-binary configuration.
903fe0
 .TP
903fe0
 repair-timeout = <timeout in seconds>
903fe0
 repair command may only run for <timeout> seconds. Set to 0 for 'unlimited', but
12ca81
@@ -188,6 +193,7 @@ Set the schedule priority for realtime mode passed to sched_setscheduler().
903fe0
 .TP
903fe0
 test-directory = <test directory>
903fe0
 Set the directory to run user test/repair scripts.  Default is '/etc/watchdog.d'
903fe0
+The /etc/watchdog.d/ is recognized by SELinux policy.
903fe0
 See the Test Directory section in watchdog(8) for more information.
903fe0
 .TP
903fe0
 log-dir = <log directory>
12ca81
@@ -202,23 +208,7 @@ large databases or virtual machines might need longer.
12ca81
 verbose = <level>
12ca81
 This overrides the command line \-\-verbose option. Generally the verbose mode is
12ca81
 only enabled for debugging as it creates a lot of syslog chatter, so use this option
12ca81
-with consideration. Zero is "normal" operation (quiet), while 1 is typically used
12ca81
-for debugging. Values of 2 or more usually generate far too many messages.
12ca81
-.TP
12ca81
-heartbeat-file = <filename>
12ca81
-For debugging this allows a rolling set of status values to be kept on disk
12ca81
-.TP
12ca81
-heartbeat-stamps = <interval>
12ca81
-For debugging this sets the number of entries in the <heartbeat-file>
12ca81
-.TP
12ca81
-log-killed-pids = <yes|no>
12ca81
-This acts like enabling 'verbose' logging, but only for a system reboot, where it
12ca81
-enables the logging of the PID values for all processes that are being killed. The
12ca81
-results are written to the killall5.log file in the log directory (if at all
12ca81
-possible) in this case.
12ca81
-Intended for debugging cases where you would like to know what was running at the
12ca81
-point the machine triggered the watchdog, but don't want syslog filling up with the
12ca81
-usual chatter of activity.
12ca81
+with consideration.
12ca81
 .SH FILES
12ca81
 .TP
12ca81
 .I /etc/watchdog.conf