aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-11-07 18:53:55 +0200
committerFilipp Lepalaan <filipp@mac.com>2016-11-07 18:53:55 +0200
commit84e68946c69f2d5799ef0b77a0c26817d0a765c9 (patch)
treeb42fa94bb283328d19b3ae10a6d6d125e1cf8966
parent2ae574cf96de67e0dfff4c6a2bcaf4b7522d1201 (diff)
downloadmaucl-84e68946c69f2d5799ef0b77a0c26817d0a765c9.tar.gz
maucl-84e68946c69f2d5799ef0b77a0c26817d0a765c9.tar.bz2
maucl-84e68946c69f2d5799ef0b77a0c26817d0a765c9.zip
Renamed to mauclHEADmaster
-rw-r--r--README.md8
-rwxr-xr-xmaucl.py (renamed from mowgli.py)0
-rwxr-xr-xtests.py6
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 4df377b..6170c2c 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
### Introduction
-mowgli (from MAUCLI (Microsoft AutoUpdate Command Line Interface)) is a command-line tool for installing Office 2016 updates.
+maucl (Microsoft AutoUpdate Command Line) is a command-line tool for installing Office 2016 updates.
### System Requirements
@@ -12,15 +12,15 @@ mowgli (from MAUCLI (Microsoft AutoUpdate Command Line Interface)) is a command-
To list all available updates:
-```mowgli.py -l```
+```maucl.py -l```
To update all installed Office applications, just issue:
-```sudo mowgli.py -ia```
+```sudo maucl.py -ia```
You can also supply an optional path to the home folder:
-```sudo mowgli.py -ia /Users/shared```
+```sudo maucl.py -ia /Users/shared```
Special thanks to [Charles](https://www.charlesproxy.com) - the excellent web debugging proxy for making the reverse-engineering possible!
diff --git a/mowgli.py b/maucl.py
index 62d5b42..62d5b42 100755
--- a/mowgli.py
+++ b/maucl.py
diff --git a/tests.py b/tests.py
index b67a966..c673dd2 100755
--- a/tests.py
+++ b/tests.py
@@ -4,12 +4,12 @@
import unittest
import subprocess
-import mowgli
+import maucl
class DefaultTestCase(unittest.TestCase):
def test_disable_au(self):
- mowgli.set_pref()
+ maucl.set_pref()
o = subprocess.check_output(['defaults',
'read',
'com.microsoft.autoupdate2',
@@ -17,7 +17,7 @@ class DefaultTestCase(unittest.TestCase):
self.assertEquals(o.strip(), 'Manual')
def test_enable_au(self):
- mowgli.set_pref(v='Automatic')
+ maucl.set_pref(v='Automatic')
o = subprocess.check_output(['defaults',
'read',
'com.microsoft.autoupdate2',