From ede8e021c22e306a7517eed2b29bb88380a10cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Sun, 7 Apr 2024 12:17:38 +0200 Subject: [PATCH] Use integer instead of string for cidata uid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cloud config schema deprecations: users.0.uid: Changed in version 22.3. The use of ``string`` type is deprecated. Use an ``integer`` instead. Signed-off-by: Anders F Björklund --- pkg/cidata/cidata.TEMPLATE.d/user-data | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cidata/cidata.TEMPLATE.d/user-data b/pkg/cidata/cidata.TEMPLATE.d/user-data index 26060b0c1c0..824646d410c 100644 --- a/pkg/cidata/cidata.TEMPLATE.d/user-data +++ b/pkg/cidata/cidata.TEMPLATE.d/user-data @@ -26,7 +26,7 @@ timezone: {{.TimeZone}} users: - name: "{{.User}}" - uid: "{{.UID}}" + uid: {{.UID}} homedir: "{{.Home}}" shell: /bin/bash sudo: ALL=(ALL) NOPASSWD:ALL