57ef9b88e3
Check that file exist before move.
6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
if [ -f "${ROOTFS_DIR}/etc/ld.so.preload" ]; then
|
|
mv "${ROOTFS_DIR}/etc/ld.so.preload" "${ROOTFS_DIR}/etc/ld.so.preload.disabled"
|
|
fi
|
|
|