#!/bin/sh if ping -w 1 google.de;then echo "loading update" opkg update echo "installing ffmpeg" opkg install ffmpeg else echo "no internet connection, bailing out" fi