summaryrefslogtreecommitdiff
path: root/Userland/Utilities/config.cpp
AgeCommit message (Collapse)Author
2022-04-26config: Allow setting a key to the empty stringRalf Donau
2021-12-11config: Port to LibMain :^)Kenneth Myhra
2021-11-14config: Add option to remove config keyfaxe1008
2021-08-31Config CLI: Handle missing config values correctlyMustafa Quraish
If the domain/group/key doesn't exist in the config, exit with non-zero status and don't print out anything. Previously the CLI would print a single empty line if the config value was not found with LibConfig. Now, we use the proper `Config::Client::the().read_string()` API which can return an `Optional` type indicating failure.`
2021-08-28Utilities: Add a command line client for ConfigServerRalf Donau
This is an alternative to the ini utility which accesses the configuration files through the newly introduced ConfigServer.