19 lines
256 B
Python
19 lines
256 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import salt.exceptions
|
||
|
|
||
|
def current_state(name):
|
||
|
ret = dict()
|
||
|
|
||
|
ret['name'] = name
|
||
|
ret['foo'] = 'foo'
|
||
|
|
||
|
return ret
|
||
|
|
||
|
def change_state(name, foo):
|
||
|
ret = dict()
|
||
|
|
||
|
ret['name'] = name
|
||
|
ret['foo'] = foo
|
||
|
|
||
|
return ret
|