13 lines
194 B
Bash
Executable File
13 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script disables TLS on the new image.
|
|
#
|
|
# Steve
|
|
# --
|
|
# $Id: 10-disable-tls,v 1.4 2006-01-08 01:53:33 steve Exp $
|
|
|
|
|
|
prefix=$1
|
|
|
|
mv ${prefix}/lib/tls ${prefix}/lib/tls.disabled
|