mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-04 15:17:12 +00:00
moved and improved tools manager
This commit is contained in:
parent
ba4bc29a9f
commit
cd54ba01f3
1 changed files with 0 additions and 46 deletions
46
manage
46
manage
|
@ -1,46 +0,0 @@
|
||||||
#!/bin/bash -e
|
|
||||||
|
|
||||||
ACTION=$1
|
|
||||||
TOOL=$2
|
|
||||||
|
|
||||||
case $ACTION in
|
|
||||||
bin)
|
|
||||||
if [ -n "$TOOL" ]
|
|
||||||
then
|
|
||||||
cd bin
|
|
||||||
ln -sf ../$TOOL/bin/* .
|
|
||||||
echo "TOOLS | $TOOL | bin symlinks updated"
|
|
||||||
cd ..
|
|
||||||
else
|
|
||||||
for t in *
|
|
||||||
do
|
|
||||||
[ ! -e "$t/install" ] && continue
|
|
||||||
$0 $ACTION $t
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
;;
|
|
||||||
install)
|
|
||||||
cd $TOOL
|
|
||||||
|
|
||||||
echo "TOOLS | $TOOL | starting install"
|
|
||||||
[ -x ./install-root ] && ./install-root
|
|
||||||
./install
|
|
||||||
echo "TOOLS | $TOOL | install finished"
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
$0 bin $TOOL
|
|
||||||
;;
|
|
||||||
uninstall)
|
|
||||||
cd $TOOL
|
|
||||||
|
|
||||||
[ -x ./uninstall ] && ./uninstall
|
|
||||||
git clean -dffx .
|
|
||||||
echo "TOOLS | $TOOL | uninstall finished"
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "TOOLS | ERROR | unknown action $ACTION"
|
|
||||||
;;
|
|
||||||
esac
|
|
Loading…
Add table
Reference in a new issue