summaryrefslogtreecommitdiffstats
path: root/hammer.py
diff options
context:
space:
mode:
authorAndrei Pavel <andrei@isc.org>2022-10-13 13:04:25 +0200
committerAndrei Pavel <andrei@isc.org>2022-10-13 18:28:10 +0200
commit1adc9a0a361dcfa209365f5a20716d1dd6081306 (patch)
treee9e4ee53a7e38807b3c5ced0984e84747f69abc6 /hammer.py
parent[#2588] Removed spurious blank line (diff)
downloadkea-1adc9a0a361dcfa209365f5a20716d1dd6081306.tar.xz
kea-1adc9a0a361dcfa209365f5a20716d1dd6081306.zip
[#2539] hammer.py: ldconfig after make install
Diffstat (limited to 'hammer.py')
-rwxr-xr-xhammer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/hammer.py b/hammer.py
index 88e359f431..7ba31fc061 100755
--- a/hammer.py
+++ b/hammer.py
@@ -1471,6 +1471,8 @@ def _install_freeradius_client(system, revision, features, env, check_times):
execute('make', cwd='freeradius-client', env=env, check_times=check_times)
execute('sudo make install', cwd='freeradius-client', env=env, check_times=check_times)
execute('rm -rf freeradius-client')
+ if system != 'alpine':
+ execute('sudo ldconfig', env=env)
log.info('freeradius-client successfully installed.')
@@ -2156,6 +2158,8 @@ def _build_binaries_and_run_ut(system, revision, features, tarball_path, env, ch
if 'install' in features:
execute('sudo make install', timeout=2 * 60,
cwd=src_path, env=env, check_times=check_times, dry_run=dry_run)
+ if system != 'alpine':
+ execute('sudo ldconfig', dry_run=dry_run, env=env)
if 'forge' in features:
if 'mysql' in features: