13 lines
171 B
Plaintext
13 lines
171 B
Plaintext
|
#
|
||
|
# This script creates the /bin/sh symlink to /bin/dash.
|
||
|
#
|
||
|
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
echo "Creating /bin/sh symlink..."
|
||
|
cd ./bin && ./ln -sf dash sh
|
||
|
;;
|
||
|
esac
|