1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/testing/entrykit/entrykit.post-deinstall
Randall Leeds 4bf97c41ec testing/entrykit: new aport
https://github.com/progrium/entrykit
Entrypoint tools for elegant, programmable containers
2016-05-02 17:30:27 +00:00

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