if [ -f "${S}/abc/abcd.service" ]; then
install -m 0644 ${S}/abc/abcd.service -D ${D}${systemd_unitdir}/system/abcd.service
ln -sf ${systemd_unitdir}/system/abcd.service ${D}${systemd_unitdir}/system/multi-user.target.wants/abcd.service
ln -sf ${systemd_unitdir}/system/abcd.service ${D}${systemd_unitdir}/system/ffbm.target.wants/abcd.service
fi
我已经安装了一个像上面一样的示例守护程序“abcd.service”,但是在目标上,我看到它被列为 root。如果我检查“ ps -ax | grep abcd ”,那么它会显示我不想要的root。知道如何将其更改为非 root 用户吗?