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.
srsRAN_4G/debian/srslte-core.postinst

15 lines
246 B
Plaintext

#!/bin/bash
# Source debconf library.
. /usr/share/debconf/confmodule
# Fetching configuration from debconf
db_get srsran/install_configs_question
ANSWER1=$RET
if [ $ANSWER1 == "true" ]; then
srsran_install_configs.sh user
fi
#DEBHELPER#