The hook scripts are now only passed a single argument on the command line - the name of the mount point. The hostname is now accessible via the environment.
9 lines
120 B
Bash
Executable File
9 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script disables TLS on the new image.
|
|
#
|
|
|
|
prefix=$1
|
|
|
|
mv ${prefix}/lib/tls ${prefix}/lib/tls.disabled
|