Fixes #603 by not recreating existing unix groups and users

This commit is contained in:
Zef Hemel
2023-12-18 17:18:58 +01:00
parent 9ca1382cf1
commit 8c14087a2c
3 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export async function determineDatabaseBackend(
}
const denoDb = await Deno.openKv(dbFile);
console.info(
`Using DenoKV as a database backend (${dbFile || "cloud"}.`,
`Using DenoKV as a database backend (${dbFile || "cloud"}).`,
);
return new DenoKvPrimitives(denoDb);
}