Display file system configuration when loading
This commit is contained in:
parent
959bbab99c
commit
cf19fc4f30
@ -223,11 +223,28 @@ namespace cryfs_cli {
|
|||||||
cipher, blocksizeBytes, missingBlockIsIntegrityViolation).loadOrCreate(std::move(configFilePath), allowFilesystemUpgrade, allowReplacedFilesystem);
|
cipher, blocksizeBytes, missingBlockIsIntegrityViolation).loadOrCreate(std::move(configFilePath), allowFilesystemUpgrade, allowReplacedFilesystem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
void printConfig(const CryConfig& config) {
|
||||||
|
std::cout
|
||||||
|
<< "\n----------------------------------------------------"
|
||||||
|
<< "\nFilesystem configuration:"
|
||||||
|
<< "\n----------------------------------------------------"
|
||||||
|
<< "\n- Filesystem format version: " << config.Version()
|
||||||
|
<< "\n- Created with: CryFS " << config.CreatedWithVersion()
|
||||||
|
<< "\n- Last opened with: CryFS " << config.LastOpenedWithVersion()
|
||||||
|
<< "\n- Cipher: " << config.Cipher()
|
||||||
|
<< "\n- Blocksize: " << config.BlocksizeBytes() << " bytes"
|
||||||
|
<< "\n- Filesystem Id: " << config.FilesystemId().ToString()
|
||||||
|
<< "\n----------------------------------------------------\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Cli::_runFilesystem(const ProgramOptions &options, std::function<void()> onMounted) {
|
void Cli::_runFilesystem(const ProgramOptions &options, std::function<void()> onMounted) {
|
||||||
try {
|
try {
|
||||||
LocalStateDir localStateDir(Environment::localStateDir());
|
LocalStateDir localStateDir(Environment::localStateDir());
|
||||||
auto blockStore = make_unique_ref<OnDiskBlockStore2>(options.baseDir());
|
auto blockStore = make_unique_ref<OnDiskBlockStore2>(options.baseDir());
|
||||||
auto config = _loadOrCreateConfig(options, localStateDir);
|
auto config = _loadOrCreateConfig(options, localStateDir);
|
||||||
|
printConfig(*config.configFile->config());
|
||||||
unique_ptr<fspp::fuse::Fuse> fuse = nullptr;
|
unique_ptr<fspp::fuse::Fuse> fuse = nullptr;
|
||||||
bool stoppedBecauseOfIntegrityViolation = false;
|
bool stoppedBecauseOfIntegrityViolation = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user