Initial commit

This commit is contained in:
DanyLE
2025-03-05 19:53:19 +01:00
parent 05bb55c837
commit a4637ec44b
46 changed files with 1829 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
do_install:append() {
# grant all permission to sudo group
sed -i 's/^#\s*\(%sudo\s*ALL=(ALL:ALL)\s*ALL\)/\1/' ${D}/${sysconfdir}/sudoers
# allow sudo group to power off/reboot system without password
cat << EOF >> ${D}/${sysconfdir}/sudoers
## sudo user group is allowed to execute halt and reboot
%sudo ALL=NOPASSWD: /sbin/halt, /sbin/reboot, /sbin/poweroff, /usr/bin/swaylock
EOF
}