Files
openwrt_yocto/poky/meta-selftest/recipes-test/selftest-users/creategroup2.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

33 lines
758 B
BlitzBasic

SUMMARY = "creategroup pt 2"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
LICENSE = "MIT"
USERADD_DEPENDS = "creategroup1"
S = "${WORKDIR}"
inherit useradd allarch
USERADD_PACKAGES = "${PN}"
USERADD_PARAM:${PN} = "-u 5556 --gid grouptest gt2"
TESTDIR = "${D}${sysconfdir}/creategroup"
do_install() {
install -d ${TESTDIR}
install -d ${TESTDIR}/dir
touch ${TESTDIR}/file
ln -s ./file ${TESTDIR}/symlink
install -d ${TESTDIR}/fifotest
mkfifo ${TESTDIR}/fifotest/fifo
chown gt2:grouptest ${TESTDIR}/file
chown -R gt2:grouptest ${TESTDIR}/dir
chown -h gt2:grouptest ${TESTDIR}/symlink
chown -R gt2:grouptest ${TESTDIR}/fifotest
}
FILES:${PN} = "${sysconfdir}/creategroup/*"