mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
https://github.com/progrium/entrykit Entrypoint tools for elegant, programmable containers
8 lines
158 B
Bash
8 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
|