diff --git a/README.md b/README.md index 5cfaa84..226327a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Firmware Validation in some ways. ## Scripts -* [snipeit](snipeit/README.md) - manage devices in SnipeIT via API +* [osfv_cli](osfv_cli/README.md) - manage devices in OSFV lab ## Contributing diff --git a/snipeit/.gitignore b/osfv-cli/.gitignore similarity index 100% rename from snipeit/.gitignore rename to osfv-cli/.gitignore diff --git a/snipeit/Makefile b/osfv-cli/Makefile similarity index 100% rename from snipeit/Makefile rename to osfv-cli/Makefile diff --git a/snipeit/README.md b/osfv-cli/README.md similarity index 95% rename from snipeit/README.md rename to osfv-cli/README.md index e3f329e..25aff74 100644 --- a/snipeit/README.md +++ b/osfv-cli/README.md @@ -35,11 +35,11 @@ as such, may not fit for other needs. and user ID - `api_url` - typically should be left unchanged, please make sure you have correct DNS configuration or entry in `/etc/hosts`, - - `api_token` - login to Snipe-IT, click on user icon, choose `Manage API + + `api_token` - login to Snipe-IT, click on user icon, choose `Manage API Keys`, click `Create New Token`, use name `osfv-scripts`, use generated API token in config file - `user_id` is your Snipe-IT user id, which can be found by going to - http://snipeit/users and showing column ID + and showing column ID ## Usage @@ -99,4 +99,3 @@ some examples: ```shell ./osfv_cli.py --help ``` - diff --git a/snipeit/config.yml b/osfv-cli/config.yml similarity index 100% rename from snipeit/config.yml rename to osfv-cli/config.yml diff --git a/snipeit/models/FW4C.yml b/osfv-cli/models/FW4C.yml similarity index 100% rename from snipeit/models/FW4C.yml rename to osfv-cli/models/FW4C.yml diff --git a/snipeit/models/PT201.yml b/osfv-cli/models/PT201.yml similarity index 100% rename from snipeit/models/PT201.yml rename to osfv-cli/models/PT201.yml diff --git a/snipeit/models/PT401.yml b/osfv-cli/models/PT401.yml similarity index 100% rename from snipeit/models/PT401.yml rename to osfv-cli/models/PT401.yml diff --git a/snipeit/models/PT601.yml b/osfv-cli/models/PT601.yml similarity index 100% rename from snipeit/models/PT601.yml rename to osfv-cli/models/PT601.yml diff --git a/snipeit/models/VP2410.yml b/osfv-cli/models/VP2410.yml similarity index 100% rename from snipeit/models/VP2410.yml rename to osfv-cli/models/VP2410.yml diff --git a/snipeit/models/VP4630.yml b/osfv-cli/models/VP4630.yml similarity index 100% rename from snipeit/models/VP4630.yml rename to osfv-cli/models/VP4630.yml diff --git a/snipeit/models/VP4650.yml b/osfv-cli/models/VP4650.yml similarity index 100% rename from snipeit/models/VP4650.yml rename to osfv-cli/models/VP4650.yml diff --git a/snipeit/models/VP4670.yml b/osfv-cli/models/VP4670.yml similarity index 100% rename from snipeit/models/VP4670.yml rename to osfv-cli/models/VP4670.yml diff --git a/snipeit/osfv_cli.py b/osfv-cli/osfv-cli.py similarity index 100% rename from snipeit/osfv_cli.py rename to osfv-cli/osfv-cli.py diff --git a/snipeit/requirements.txt b/osfv-cli/requirements.txt similarity index 100% rename from snipeit/requirements.txt rename to osfv-cli/requirements.txt diff --git a/snipeit/rte.py b/osfv-cli/rte.py similarity index 100% rename from snipeit/rte.py rename to osfv-cli/rte.py diff --git a/snipeit/rtectrl_api.py b/osfv-cli/rtectrl_api.py similarity index 100% rename from snipeit/rtectrl_api.py rename to osfv-cli/rtectrl_api.py diff --git a/snipeit/snipeit_api.py b/osfv-cli/snipeit_api.py similarity index 100% rename from snipeit/snipeit_api.py rename to osfv-cli/snipeit_api.py diff --git a/snipeit/snipeit_robot.py b/osfv-cli/snipeit_robot.py similarity index 100% rename from snipeit/snipeit_robot.py rename to osfv-cli/snipeit_robot.py diff --git a/snipeit/sonoff_api.py b/osfv-cli/sonoff_api.py similarity index 100% rename from snipeit/sonoff_api.py rename to osfv-cli/sonoff_api.py