View Single Post
  #2 (permalink)  
Old 28-Aug-2008, 12:34
camgomez camgomez is offline
Puzzled Penguin
 
Join Date: Aug 2008
Posts: 2
camgomez hasn't been rated much yet
Default Re: Jailkit install problems

Got same problem with CentOS and openSUSE. Here is how I solved it:
Added a include section to /etc/jailkit/jk_init.ini:
Code:
[ldconfig]
executables = /sbin/ldconfig
regularfiles = /etc/ld.so.conf
Then in all include sections that included the ld.so.conf file as a regularfile, I changed them like:

Code:
[uidbasics]
# this section probably needs adjustment on 64bit systems
# or non-Linux systems
# regularfiles = /etc/nsswitch.conf /etc/ld.so.conf
comment = common files for all jails that need user/group information
libraries = /lib/libnsl.so.1, /lib64/libnsl.so.1, /lib/libnss*.so.2, /lib64/libnss*.so.2
regularfiles = /etc/nsswitch.conf
includesections = ldconfig
This seems to solve the issue.
Reply With Quote