From 1ed5a531bb5dabdad5dbfbe6b7b9bb391cc17ae5 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Fri, 1 Jul 2022 10:38:29 -0600 Subject: [PATCH] Removed extra period from log message I think the `.` in `uid./gid not synced` is erroneous. --- internal/pkg/container/syncuids.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/container/syncuids.go b/internal/pkg/container/syncuids.go index 779324db..3a2be4f4 100644 --- a/internal/pkg/container/syncuids.go +++ b/internal/pkg/container/syncuids.go @@ -101,7 +101,7 @@ func SyncUids(containerName string, showOnly bool) error { } if showOnly { - wwlog.Printf(wwlog.INFO, "uid./gid not synced, run \nwwctl container syncuser --write %s\nto synchronize uid/gids.\n", containerName) + wwlog.Printf(wwlog.INFO, "uid/gid not synced, run \nwwctl container syncuser --write %s\nto synchronize uid/gids.\n", containerName) return nil } // create list of files which need changed ownerships in order to change them later what