1
0
mirror of synced 2026-04-20 08:36:12 +00:00

2006-02-18 12:24:23 by steve

Create an empty /lib/tls directory on the host and ensure it may not
 be used.
This commit is contained in:
steve
2006-02-18 12:24:23 +00:00
parent 3c34c5049b
commit 40d5ce2861

View File

@@ -4,9 +4,17 @@
#
# Steve
# --
# $Id: 10-disable-tls,v 1.4 2006-01-08 01:53:33 steve Exp $
# $Id: 10-disable-tls,v 1.5 2006-02-18 12:24:23 steve Exp $
prefix=$1
mv ${prefix}/lib/tls ${prefix}/lib/tls.disabled
#
# Make a new /lib/tls directory in the guest, and make sure
# it cannot be modified.
#
mkdir ${prefix}/lib/tls
chmod 0 ${prefix}/lib/tls
chattr +i ${prefix}/lib/tls