1
0
mirror of https://github.com/rancher/os.git synced 2025-07-05 19:16:13 +00:00

Merge pull request #1363 from joshwget/remove-entry-script

Remove unnecessary entry.sh script
This commit is contained in:
Sven Dowideit 2016-11-02 15:22:12 +10:00 committed by GitHub
commit 6b466251ef

View File

@ -1,14 +0,0 @@
#!/bin/bash
if [ -e /host/dev ]; then
mount --rbind /host/dev /dev
fi
CA_BASE=/etc/ssl/certs/ca-certificates.crt.rancher
CA=/etc/ssl/certs/ca-certificates.crt
if [[ -e ${CA_BASE} && ! -e ${CA} ]]; then
cp $CA_BASE $CA
fi
exec "$@"