move
This commit is contained in:
parent
eba2b0a2ad
commit
7f27bb5590
1 changed files with 1 additions and 1 deletions
16
tools/deploy-tools.sh
Executable file
16
tools/deploy-tools.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
echo "Please run as root"
|
||||
exit
|
||||
fi
|
||||
|
||||
case $1 in
|
||||
router)
|
||||
cp router.sh /usr/local/bin/router.sh
|
||||
;;
|
||||
repo)
|
||||
mkdir /docker
|
||||
cp * .* /docker
|
||||
;;
|
||||
esac
|
Reference in a new issue