Add initial notes and readme, script to copy wlan-lanforge-scripts

This commit is contained in:
Ben Greear
2020-04-20 05:35:45 -07:00
commit 4e25a0e140
4 changed files with 29 additions and 0 deletions

9
NOTES.txt Normal file
View File

@@ -0,0 +1,9 @@
Notes for TIP WiFi testing related topics.
# To pull the latest upstream lanforge-scripts repo into the wlan-lanforge-scripts
# repository, use this or similar command.
git pull git@github.com:greearb/lanforge-scripts.git

5
README.md Normal file
View File

@@ -0,0 +1,5 @@
This repository will hold TIP WiFi specific scripts and glue
logic. It will utilize the scripts in wlan-lanforge-scripts and possibly
other Cloud-SDK libraries in the future.

3
lanforge/TIP_README.txt Normal file
View File

@@ -0,0 +1,3 @@
The wlan-lanforge-scripts directory will be coppied to this location.
Do not add any additional files to this directory without good reason.

12
sync_repos.bash Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Copy wlan-lanforge-scripts into place
# Assumes wlan-lanforge-scripts is already up to date.
# Other setup may be added here as well.
if [ -d ../wlan-lanforge-scripts ]
then
rm -fr lanforge/lanforge-scripts
cp -ar ../wlan-lanforge-scripts lanforge/lanforge-scripts
fi