Merge branch 'next/minor' of github.com:Start9Labs/start-os into next/major

This commit is contained in:
Matt Hill
2024-08-08 10:52:49 -06:00
765 changed files with 43858 additions and 19423 deletions

View File

@@ -55,7 +55,7 @@ pub fn validate_configuration(
Ok(_) => {
// create temp config file
serde_yaml::to_writer(
std::fs::File::create(config_path.with_extension("tmp"))?,
std::fs::create_file(config_path.with_extension("tmp"))?,
&config,
)?;
std::fs::rename(config_path.with_extension("tmp"), config_path)?;