From 82a81cd01fb199ea35147f1269a99c2d4bff40d7 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 6 Jun 2016 16:34:10 -0700 Subject: new utility: util/safemode (on or off); requires util/addons --- util/safemode | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 util/safemode (limited to 'util/safemode') diff --git a/util/safemode b/util/safemode new file mode 100755 index 000000000..05ddbeafe --- /dev/null +++ b/util/safemode @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +if [ $# == 0 ] ; then + echo Usage: $0 on '|' $0 off + echo on saves current addons to addons-safemode and uninstalls all of them + echo off installs all addons in addons-safemode + exit +fi + + +if [ $1 == 'on' ] ; then + util/addons list > addons-safemode + for a in `cat addons-safemode` ; do + util/addons uninstall $a + done + exit +fi + +if [ $1 == 'off' ] ; then + for a in `cat addons-safemode` ; do + util/addons install $a + done + exit +fi + + + -- cgit v1.2.3