From 2b2b9ad71527a68da553a374ccaee86ae8e3154b Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Wed, 16 May 2018 14:24:49 -0400 Subject: [PATCH] [5427] Added lib location paragraph --- doc/guide/hooks.xml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/guide/hooks.xml b/doc/guide/hooks.xml index fa0a41c1ea..614cc82845 100644 --- a/doc/guide/hooks.xml +++ b/doc/guide/hooks.xml @@ -112,7 +112,7 @@ $ tar zxvf kea-1.4.0.tar.gz premium tarball is in your current directory, the following steps will unpack the premium tarball into the correct location: - $ cd kea-1.3.0 + $ cd kea-1.4.0 $ tar xvf ../kea-premium-1.4.0.tar.gz Note that unpacking the Kea premium package will put the files into a @@ -169,6 +169,23 @@ $ sudo make install eventually venture into premium/ directory and will install additional hook libraries and associated files. + + The installation location of the hooks libraries depends whether you + specified --prefix parameter to the configure script. If you did not, + the default location will be /usr/local/lib/hooks. You can verify the + libraries are installed properly with this command: + +$ ls -l /usr/local/lib/hooks/*.so +/usr/local/lib/hooks/libdhcp_flex_id.so +/usr/local/lib/hooks/libdhcp_host_cmds.so +/usr/local/lib/hooks/libdhcp_lease_cmds.so +/usr/local/lib/hooks/libdhcp_legal_log.so +/usr/local/lib/hooks/libdhcp_subnet_cmds.so + + The exact list you see will depend on the packages you have. + If you specified directory via --prefix, the hooks libraries + will be located in {prefix directory}/lib/hooks. +
-- 2.47.2