summarylogtreecommitdiffstats
path: root/rclone-mount-rc.local
blob: 106065de923f20bbe4f2ceb69b3b56a37798815e (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
# /etc/rclone-mount-rc.local.d
if test -d /etc/rclone-mount-rc.local.d; then
    for rcscript in /etc/rclone-mount-rc.local.d/*.sh; do
        test -r "${rcscript}" && sh ${rcscript}
    done
    unset rcscript
fi