fuse_%.bbappend 316 Bytes
Newer Older
1 2 3 4 5
do_install_append() {
    # Remove /etc/modules-load.d/fuse.conf which makes the systemd-modules-load.service fail
    if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
        rm -r ${D}${sysconfdir}/modules-load.d
    fi
6 7

    echo "user_allow_other" >> ${D}${sysconfdir}/fuse.conf
8
}