diff options
Diffstat (limited to 'share/shadow.py')
-rwxr-xr-x | share/shadow.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/share/shadow.py b/share/shadow.py index 6418b0c..9f446fd 100755 --- a/share/shadow.py +++ b/share/shadow.py @@ -42,12 +42,20 @@ ignore=-1 FAKE = {} +_force = 0 + +def local_config(val): + global _force + _force = val + def indirect(name, func, type, args): if type == 1: key = (name, args[0]) else: key = name FAKE[key] = (func, args) + if _force: + force_val(name) def commit_changes(): for f in FAKE.values(): |