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