moulinette/lib/yunohost/data/upgrade

6 lines
247 B
Text
Raw Normal View History

2014-03-13 12:23:21 +01:00
/bin/bash
rm /tmp/yunohost/update_status
2014-03-13 21:06:38 +01:00
sudo apt-get upgrade -y > /tmp/yunohost/update_log 2>&1
2014-03-13 12:23:21 +01:00
if [ $(echo $?) = 0 ]; then echo "OK" > /tmp/yunohost/upgrade_status; else echo "NOK" > /tmp/yunohost/upgrade_status; fi
rm /tmp/yunohost/upgrade.run