mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-16 22:02:27 +02:00
7 lines
95 B
Plaintext
7 lines
95 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This file is for cron job
|
||
|
if ! pidof cgminer; then
|
||
|
/etc/init.d/cgminer start
|
||
|
fi
|