From db2efee31d3c871a1e5f4fe665e0f3daa01a27f8 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 30 Oct 2023 17:21:46 -0400 Subject: agl-users: factor out reusable include file Refactor the recipe to put the actual useradd configuration into an include file. This will allow other recipes that need to use the agl-driver user for file ownership to pull that in as opposed to duplicating the configuration and risking mismatches. Bug-AGL: SPEC-4952 Change-Id: Ica16a13a3750722c6d22b14944898f7b289e4bbe Signed-off-by: Scott Murray Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/29340 Tested-by: Jan-Simon Moeller Reviewed-by: Jan-Simon Moeller --- meta-agl-core/recipes-config/agl-users/agl-users.inc | 14 ++++++++++++++ meta-agl-core/recipes-config/agl-users/agl-users_1.0.bb | 15 ++------------- 2 files changed, 16 insertions(+), 13 deletions(-) create mode 100644 meta-agl-core/recipes-config/agl-users/agl-users.inc (limited to 'meta-agl-core') diff --git a/meta-agl-core/recipes-config/agl-users/agl-users.inc b/meta-agl-core/recipes-config/agl-users/agl-users.inc new file mode 100644 index 000000000..428af3806 --- /dev/null +++ b/meta-agl-core/recipes-config/agl-users/agl-users.inc @@ -0,0 +1,14 @@ +inherit useradd + +USERADD_PACKAGES = "${PN}" +USERADDEXTENSION = "useradd-staticids" + +GROUPADD_PARAM:${PN} = "\ + --system video ; \ + --system pipewire ; \ + -g 1001 agl-driver ; \ +" + +USERADD_PARAM:${PN} = "\ + -g 1001 -u 1001 -G video,pipewire -o -d /home/agl-driver -m -K PASS_MAX_DAYS=-1 agl-driver ; \ +" diff --git a/meta-agl-core/recipes-config/agl-users/agl-users_1.0.bb b/meta-agl-core/recipes-config/agl-users/agl-users_1.0.bb index eda477f7a..18f25e4be 100644 --- a/meta-agl-core/recipes-config/agl-users/agl-users_1.0.bb +++ b/meta-agl-core/recipes-config/agl-users/agl-users_1.0.bb @@ -2,19 +2,8 @@ SUMMARY = "AGL Users" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" -inherit allarch useradd +inherit allarch -USERADD_PACKAGES = "${PN}" -USERADDEXTENSION = "useradd-staticids" - -GROUPADD_PARAM:${PN} = "\ - --system video ; \ - --system pipewire ; \ - -g 1001 agl-driver ; \ -" - -USERADD_PARAM:${PN} = "\ - -g 1001 -u 1001 -G video,pipewire -o -d /home/agl-driver -m -K PASS_MAX_DAYS=-1 agl-driver ; \ -" +require agl-users.inc ALLOW_EMPTY:${PN} = "1" -- cgit 1.2.3-korg