summaryrefslogtreecommitdiff
path: root/pkg/gonf.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gonf.go')
-rw-r--r--pkg/gonf.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/gonf.go b/pkg/gonf.go
index 88edf9c..5e02176 100644
--- a/pkg/gonf.go
+++ b/pkg/gonf.go
@@ -14,6 +14,14 @@ func EnableDebugLogs() {
func Resolve() (status Status) {
for {
+ // ----- Users -------------------------------------------------
+ status = resolveUsers()
+ switch status {
+ case BROKEN:
+ return BROKEN
+ case REPAIRED:
+ continue
+ }
// ----- Files -------------------------------------------------
status = resolveFiles()
switch status {