]> granicus.if.org Git - icinga2/commitdiff
Fix wrong icinga2 binary in development docs
authorMichael Friedrich <michael.friedrich@netways.de>
Mon, 23 Nov 2015 13:37:49 +0000 (14:37 +0100)
committerMichael Friedrich <michael.friedrich@netways.de>
Wed, 25 Nov 2015 07:53:26 +0000 (08:53 +0100)
fixes #10710

doc/21-development.md

index 043948b28750a7968b77d41ae0f271602cd2e047..906c1c135d0afbed3c280c568a37a58de6992095 100644 (file)
@@ -116,10 +116,11 @@ the duplicate import in your `~/.gdbinit` file.
 
 ### <a id="development-debug-gdb-run"></a> GDB Run
 
-Call GDB with the binary and all arguments and run it in foreground.
+Call GDB with the binary (`/usr/sbin/icinga2` is a wrapper script calling
+`/usr/lib64/icinga2/sbin/icinga2` since 2.4) and all arguments and run it in foreground.
 If VFork causes trouble disable it inside the gdb run.
 
-    # gdb --args /usr/sbin/icinga2 daemon -x debug -DUseVfork=0
+    # gdb --args /usr/lib64/icinga2/sbin/icinga2 daemon -x debug -DUseVfork=0
 
 > **Note**
 >