enb_srs.py: Pass filenames to main cfg file template instead of cmdline args

Change-Id: Ifec6a8a9c29b94634f6ac7ea50aae9b8e18ae3cb
diff --git a/src/osmo_gsm_tester/templates/srsenb.conf.tmpl b/src/osmo_gsm_tester/templates/srsenb.conf.tmpl
index 954b63f..df12762 100644
--- a/src/osmo_gsm_tester/templates/srsenb.conf.tmpl
+++ b/src/osmo_gsm_tester/templates/srsenb.conf.tmpl
@@ -38,9 +38,9 @@
 # drb_config:  DRB configuration file
 #####################################################################
 [enb_files]
-sib_config = sib.conf
-rr_config  = rr.conf
-drb_config = drb.conf
+sib_config = ${enb.sib_filename}
+rr_config  = ${enb.rr_filename}
+drb_config = ${enb.drb_filename}
 
 #####################################################################
 # RF configuration
@@ -98,7 +98,7 @@
 #####################################################################
 [pcap]
 enable = ${'true' if enb.enable_pcap else 'false'}
-filename = /tmp/enb.pcap
+filename = ${enb.pcap_filename}
 
 #####################################################################
 # Log configuration
@@ -123,7 +123,7 @@
 [log]
 all_level = warning
 all_hex_limit = 32
-filename = /tmp/enb.log
+filename = ${enb.log_filename}
 file_max_size = -1
 
 [gui]