srsLTE/debian/srslte-core.postinst

15 lines
246 B
Plaintext
Raw Normal View History

2018-07-10 03:04:01 -07:00
#!/bin/bash
# Source debconf library.
. /usr/share/debconf/confmodule
# Fetching configuration from debconf
2021-03-19 03:45:56 -07:00
db_get srsran/install_configs_question
2018-07-10 03:04:01 -07:00
ANSWER1=$RET
if [ $ANSWER1 == "true" ]; then
2021-03-19 03:45:56 -07:00
srsran_install_configs.sh user
2018-07-10 03:04:01 -07:00
fi
#DEBHELPER#