mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
https://github.com/progrium/entrykit Entrypoint tools for elegant, programmable containers
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
|
|
for link in /usr/bin/*; do
|
|
if [ -L "$link" ] && [ "$(readlink $link)" = "/usr/bin/entrykit" ]; then
|
|
echo "removing $link"
|
|
rm "$link"
|
|
fi
|
|
done
|