print out Pkgmk settings in dumpconfig

This commit is contained in:
Johannes Winkelmann 2010-05-18 21:14:31 +02:00
parent 418ed7c6b4
commit 7c8a9b2ae5
1 changed files with 16 additions and 0 deletions

View File

@ -2138,6 +2138,22 @@ void PrtGet::dumpConfig()
cout.fill( ' ' );
cout << " Append log: " <<(m_config->appendLog() ? "yes" : "no" ) << endl;
cout << endl;
cout.setf( ios::left, ios::adjustfield );
cout.width( 20 );
cout.fill( ' ' );
cout << "Pkgmk settings: " << m_config->logFilePattern() << endl;
cout.setf( ios::left, ios::adjustfield );
cout.width( 20 );
cout.fill( ' ' );
cout << " Package dir: " << InstallTransaction::getPkgmkPackageDir()
<< endl;
cout.setf( ios::left, ios::adjustfield );
cout.width( 20 );
cout.fill( ' ' );
cout << " Compression mode: "
<< InstallTransaction::getPkgmkCompressionMode() << endl;
cout << endl;