From 5b4a0f9034bf3caef9f971ae3ad0e0a24281a4a2 Mon Sep 17 00:00:00 2001 From: jknphy Date: Fri, 3 Jan 2025 14:30:46 +0100 Subject: [PATCH] Add plain password for leap while not encrypted allowed --- .../auto/leap_default_plain_password.jsonnet | 13 +++++++++++++ .../auto/leap_gnome_plain_password.jsonnet | 18 ++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 data/yam/agama/auto/leap_default_plain_password.jsonnet create mode 100644 data/yam/agama/auto/leap_gnome_plain_password.jsonnet diff --git a/data/yam/agama/auto/leap_default_plain_password.jsonnet b/data/yam/agama/auto/leap_default_plain_password.jsonnet new file mode 100644 index 000000000000..98735864c04f --- /dev/null +++ b/data/yam/agama/auto/leap_default_plain_password.jsonnet @@ -0,0 +1,13 @@ +{ + "product": { + "id": "Leap_16.0" + }, + "user": { + "fullName": "Bernhard M. Wiedemann", + "password": "nots3cr3t", + "userName": "bernhard" + }, + "root": { + "password": "nots3cr3t" + } +} diff --git a/data/yam/agama/auto/leap_gnome_plain_password.jsonnet b/data/yam/agama/auto/leap_gnome_plain_password.jsonnet new file mode 100644 index 000000000000..504b284e1daa --- /dev/null +++ b/data/yam/agama/auto/leap_gnome_plain_password.jsonnet @@ -0,0 +1,18 @@ +{ + product: { + id: 'Leap_16.0', + }, + software: { + patterns: [ + 'gnome', + ], + }, + user: { + fullName: 'Bernhard M. Wiedemann', + password: 'nots3cr3t', + userName: 'bernhard', + }, + root: { + password: 'nots3cr3t', + }, +}