mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
241 B
Plaintext
15 lines
241 B
Plaintext
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Source debconf library.
|
||
|
. /usr/share/debconf/confmodule
|
||
|
|
||
|
# Fetching configuration from debconf
|
||
|
db_get srslte/install_configs_question
|
||
|
ANSWER1=$RET
|
||
|
|
||
|
if [ $ANSWER1 == "true" ]; then
|
||
|
srslte_install_configs.sh
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|