mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
10 lines
129 B
Bash
10 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -d /mnt/data/on_boot.d ]; then
|
||
|
for i in /mnt/data/on_boot.d/*.sh; do
|
||
|
if [ -r $i ]; then
|
||
|
. $i
|
||
|
fi
|
||
|
done
|
||
|
fi
|