srsRAN/debian/srslte-core.postinst

15 lines
246 B
Plaintext
Raw Normal View History

2018-07-10 10:04:01 +00:00
#!/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 user
2018-07-10 10:04:01 +00:00
fi
#DEBHELPER#