| Linux webhost1.zalaszam.hu 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 Path : /usr/share/cli-common/ |
| Current File : //usr/share/cli-common/framework-remove |
#!/bin/bash
if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
echo ! Cannot remove framework $1
exit 1
fi
echo "* Removing packages from $1's framework paths"
for file in /usr/share/cli-common/packages.d/*.installcliframework
do
if [ -f $file ]; then
/usr/share/cli-common/framework-package-remove \
$(basename $file .installcliframework) \
$1
fi
done