Rename to l4p, update references and README.md

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
2024-02-22 22:31:17 +01:00
parent 77bc8364f2
commit ee67f7883e
8 changed files with 53 additions and 131 deletions

View File

@@ -30,8 +30,7 @@ fn main() {
}
fn find_config() -> String {
let config_path =
env::var("FOURTH_CONFIG").unwrap_or_else(|_| "/etc/fourth/config.yaml".to_string());
let config_path = env::var("L4P_CONFIG").unwrap_or_else(|_| "/etc/l4p/l4p.yaml".to_string());
if Path::new(&config_path).exists() {
return config_path;