mirror of
https://github.com/kou029w/megabit-os.git
synced 2025-01-19 00:08:00 +00:00
12 lines
279 B
Text
12 lines
279 B
Text
|
#!/sbin/openrc-run
|
||
|
name=megabit-sync
|
||
|
command="/usr/local/bin/megabit-sync"
|
||
|
pidfile="/var/run/megabit-sync.pid"
|
||
|
|
||
|
start_pre() {
|
||
|
mkdir -p /mnt/tmp
|
||
|
mount /usr/share/megabit/tmp.img /mnt/tmp
|
||
|
modprobe -r g_mass_storage
|
||
|
modprobe g_mass_storage file=/usr/share/megabit/tmp.img
|
||
|
}
|