Skip to content

Commit a0ad07c

Browse files
committed
Clean up
1 parent 962ed16 commit a0ad07c

3 files changed

Lines changed: 18 additions & 8 deletions

File tree

OpenAirInterface_Testbed/RAN_Intelligent_Controllers/Flexible-RIC/install_scripts/uninstall_influxdb.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ sudo ./install_scripts/stop_influxdb_service.sh
5151
sudo apt-get remove -y influxdb
5252
sudo apt-get remove -y influxdb-client
5353
sudo apt-get remove -y influxdb2
54-
sudo apt-get autoclean -ysudo apt-get apt-get autoremove -y
54+
sudo apt-get autoclean -y
55+
sudo apt-get autoremove -y
5556

5657
sudo rm -rf /var/lib/influxdb/
5758
sudo rm -rf /var/log/influxdb/

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,7 @@ USNISTGOV/O-RAN-Testbed-Automation is developed and maintained by the NIST Wirel
221221
## NIST Disclaimers
222222

223223
- **NIST Software Disclaimer** [[15]][gh-nsd]
224-
- **NIST Commercial Software Disclaimer** [[16]][gh-cpd]
225-
- **Fair Use and Licensing Statements of NIST Data/Works** [[17]][gh-license]
224+
- **Fair Use and Licensing Statements of NIST Data/Works** [[16]][gh-license]
226225

227226
## References
228227

full_install.sh

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ cd Next_Generation_Node_B
161161

162162
cd ..
163163

164+
INSTALL_NEAR_RT_RIC=false
164165
if [ -d "RAN_Intelligent_Controllers/Near-Real-Time-RIC" ]; then
166+
INSTALL_NEAR_RT_RIC=true
165167
echo
166168
echo
167169
echo "################################################################################"
@@ -192,8 +194,16 @@ cd ../User_Equipment
192194
./generate_configurations.sh
193195
cd ..
194196

195-
echo
196-
echo
197-
echo "################################################################################"
198-
echo "# Successfully installed the Near-RT RIC, 5G Core, gNodeB, and UE. #"
199-
echo "################################################################################"
197+
if [ "$INSTALL_NEAR_RT_RIC" = true ]; then
198+
echo
199+
echo
200+
echo "################################################################################"
201+
echo "# Successfully installed the Near-RT RIC, 5G Core, gNodeB, and UE. #"
202+
echo "################################################################################"
203+
else
204+
echo
205+
echo
206+
echo "################################################################################"
207+
echo "# Successfully installed the 5G Core, gNodeB, and UE. #"
208+
echo "################################################################################"
209+
fi

0 commit comments

Comments
 (0)