Add some kernel modules to container
diff --git a/build_lxc.sh b/build_lxc.sh
index fbdfcd3..e8612e6 100755
--- a/build_lxc.sh
+++ b/build_lxc.sh
@@ -29,6 +29,7 @@
     cd libcgroup-0.37.1
     ./configure
     make install
+    ldconfig
 fi
 
 # Create lxc configuration
@@ -99,6 +100,11 @@
 # stack requires)
 echo "stack ALL=(ALL) NOPASSWD: ALL" >> $ROOTFS/etc/sudoers
 
+# Copy kernel modules
+mkdir -p $ROOTFS/lib/modules/`uname -r`/kernel
+cp -p /lib/modules/`uname -r`/modules.dep $ROOTFS/lib/modules/`uname -r`/
+cp -pR /lib/modules/`uname -r`/kernel/net $ROOTFS/lib/modules/`uname -r`/kernel/
+
 # Gracefully cp only if source file/dir exists
 function cp_it {
     if [ -e $1 ] || [ -d $1 ]; then