Compare commits

3 Commits

Author SHA1 Message Date
Sovran_Systems
1998fc0652 Delete .gitignore.txt 2026-04-04 09:31:46 -05:00
Sovran_Systems
6ee3d00802 Update .gitignore 2026-04-04 09:31:19 -05:00
Sovran_Systems
cf46424f50 Delete path/to directory 2026-04-04 09:30:27 -05:00
3 changed files with 5 additions and 24 deletions

6
.gitignore vendored
View File

@@ -1,4 +1,8 @@
custom.nix
role-state.nix
*.iso
*.zip
*.pma
__pycache__/ __pycache__/
*.pyc *.pyc
*.pyo *.pyo

View File

@@ -1,8 +0,0 @@
custom.nix
role-state.nix
*.iso
*.zip
*.pma
__pycache__/
*.pyc
*.pyo

View File

@@ -1,15 +0,0 @@
// Update the service data model to include requiresDomain and domain status fields.
class Service {
String name;
boolean requiresDomain;
DomainStatus domainStatus;
}
// Enum to represent domain status health checks for services
enum DomainStatus {
MISSING,
MISCONFIGURED,
CONNECTED,
UNKNOWN
}