Parse psa-config-directory and psa-tariff-directory settings.
This commit is contained in:
		@@ -15,6 +15,7 @@
 | 
				
			|||||||
#include "commandline_parser.h"
 | 
					#include "commandline_parser.h"
 | 
				
			||||||
#include "utils.h"
 | 
					#include "utils.h"
 | 
				
			||||||
#include "update.h"
 | 
					#include "update.h"
 | 
				
			||||||
 | 
					#include "System.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <DeviceController/interfaces.h>
 | 
					#include <DeviceController/interfaces.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -68,6 +69,8 @@ int main(int argc, char **argv) {
 | 
				
			|||||||
    QString plugInDir = parser.plugInDir();
 | 
					    QString plugInDir = parser.plugInDir();
 | 
				
			||||||
    QString plugInName = parser.plugInName();
 | 
					    QString plugInName = parser.plugInName();
 | 
				
			||||||
    QString workingDir = parser.workingDir();
 | 
					    QString workingDir = parser.workingDir();
 | 
				
			||||||
 | 
					    QString psaConfigDir = parser.psaConfigDir();
 | 
				
			||||||
 | 
					    QString psaTariffDir = parser.psaTariffDir();
 | 
				
			||||||
    QString iniFileName = parser.iniFileName();
 | 
					    QString iniFileName = parser.iniFileName();
 | 
				
			||||||
    bool const dryRun = parser.dryRun();
 | 
					    bool const dryRun = parser.dryRun();
 | 
				
			||||||
    bool const noUpdatePsaHardware = parser.noUpdatePsaHardware();
 | 
					    bool const noUpdatePsaHardware = parser.noUpdatePsaHardware();
 | 
				
			||||||
@@ -90,6 +93,8 @@ int main(int argc, char **argv) {
 | 
				
			|||||||
    qInfo() << "plugInDir ................" << plugInDir;
 | 
					    qInfo() << "plugInDir ................" << plugInDir;
 | 
				
			||||||
    qInfo() << "plugInName ..............." << plugInName;
 | 
					    qInfo() << "plugInName ..............." << plugInName;
 | 
				
			||||||
    qInfo() << "workingDir ..............." << workingDir;
 | 
					    qInfo() << "workingDir ..............." << workingDir;
 | 
				
			||||||
 | 
					    qInfo() << "psaConfigDir ............." << psaConfigDir;
 | 
				
			||||||
 | 
					    qInfo() << "psaTariffDir ............." << psaTariffDir;
 | 
				
			||||||
    qInfo() << "dryRun ..................." << dryRun;
 | 
					    qInfo() << "dryRun ..................." << dryRun;
 | 
				
			||||||
    qInfo() << "noUpdatePsaHardware ......" << noUpdatePsaHardware;
 | 
					    qInfo() << "noUpdatePsaHardware ......" << noUpdatePsaHardware;
 | 
				
			||||||
    qInfo() << "alwaysDownloadConfig ....." << alwaysDownloadConfig;
 | 
					    qInfo() << "alwaysDownloadConfig ....." << alwaysDownloadConfig;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user