You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
slog.Info("skipping script because it requires superuser privileges and the target cannot elevate privileges", slog.String("script", script.Name))
110
+
slog.Info("skipping script because it requires superuser privileges and the user cannot elevate privileges on target", slog.String("script", script.Name))
// run master script with sudo, "-S" to read password from stdin
166
+
ifneedsElevatedPrivileges&&!canElevate {
167
+
// this shouldn't happen because we already filtered out the scripts that require elevated privileges if the user cannot elevate privileges on the target
168
+
err=fmt.Errorf("master script requires elevated privileges but the user cannot elevate privileges on target")
0 commit comments