Version 0.2 finally first commit
This commit is contained in:
20
distro_client/prep_distro.sh
Normal file
20
distro_client/prep_distro.sh
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Creates a tar.gz of the subdomain client files
|
||||
|
||||
rm -f subdomain_client.tar.gz
|
||||
rm -rf tmp
|
||||
mkdir tmp
|
||||
cp -a ./install_subdomain_client.sh tmp/
|
||||
cp -a ../src/bpe_subdomain_server/refresh_subdomain.py tmp/
|
||||
|
||||
cd tmp
|
||||
|
||||
chmod +x install_subdomain_client.sh
|
||||
|
||||
tar -zcvf ../subdomain_client.tar.gz install_subdomain_client.sh refresh_subdomain.py
|
||||
|
||||
cd ..
|
||||
rm -rf tmp
|
||||
|
||||
echo "Created subdomain_client.tar.gz"
|
||||
Reference in New Issue
Block a user