├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── ansible.cfg ├── defaults └── main.yml ├── filter_plugins └── categorize_wirless.py ├── hosts ├── library └── .gitkeep ├── meta └── main.yml ├── playbook.yml ├── src ├── BinDecHex.lua ├── ansible.lua ├── ansible_test.lua ├── base64.lua ├── copy.lua ├── dkjson.lua ├── fatpack.pl ├── file.lua ├── fileutils.lua ├── lineinfile.lua ├── opkg.lua ├── ping.lua ├── slurp.lua ├── stat.lua ├── ubus.lua └── uci.lua └── test ├── command ├── failing │ ├── binpath.json │ └── command.json └── valid │ ├── binpath.json │ ├── binpath_defaults.json │ ├── command.json │ └── command_stderr.json ├── failing ├── fail_bool.json ├── fail_choice.json ├── fail_dict.json ├── fail_float.json ├── fail_int.json ├── fail_jsonarg.json ├── fail_list.json ├── fail_path.json ├── fail_req.json ├── fail_string.json └── fail_unknown.json └── valid ├── valid.json ├── valid_change.json ├── valid_defaults.json ├── valid_stringly.json └── valid_stringly2.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | *.pyc 3 | library/*.lua 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/ansible.cfg -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /filter_plugins/categorize_wirless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/filter_plugins/categorize_wirless.py -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/hosts -------------------------------------------------------------------------------- /library/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- 1 | dependencies: [] 2 | -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/playbook.yml -------------------------------------------------------------------------------- /src/BinDecHex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/BinDecHex.lua -------------------------------------------------------------------------------- /src/ansible.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/ansible.lua -------------------------------------------------------------------------------- /src/ansible_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/ansible_test.lua -------------------------------------------------------------------------------- /src/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/base64.lua -------------------------------------------------------------------------------- /src/copy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/copy.lua -------------------------------------------------------------------------------- /src/dkjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/dkjson.lua -------------------------------------------------------------------------------- /src/fatpack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/fatpack.pl -------------------------------------------------------------------------------- /src/file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/file.lua -------------------------------------------------------------------------------- /src/fileutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/fileutils.lua -------------------------------------------------------------------------------- /src/lineinfile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/lineinfile.lua -------------------------------------------------------------------------------- /src/opkg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/opkg.lua -------------------------------------------------------------------------------- /src/ping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/ping.lua -------------------------------------------------------------------------------- /src/slurp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/slurp.lua -------------------------------------------------------------------------------- /src/stat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/stat.lua -------------------------------------------------------------------------------- /src/ubus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/ubus.lua -------------------------------------------------------------------------------- /src/uci.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/src/uci.lua -------------------------------------------------------------------------------- /test/command/failing/binpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/failing/binpath.json -------------------------------------------------------------------------------- /test/command/failing/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/failing/command.json -------------------------------------------------------------------------------- /test/command/valid/binpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/valid/binpath.json -------------------------------------------------------------------------------- /test/command/valid/binpath_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/valid/binpath_defaults.json -------------------------------------------------------------------------------- /test/command/valid/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/valid/command.json -------------------------------------------------------------------------------- /test/command/valid/command_stderr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/command/valid/command_stderr.json -------------------------------------------------------------------------------- /test/failing/fail_bool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_bool.json -------------------------------------------------------------------------------- /test/failing/fail_choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_choice.json -------------------------------------------------------------------------------- /test/failing/fail_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_dict.json -------------------------------------------------------------------------------- /test/failing/fail_float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_float.json -------------------------------------------------------------------------------- /test/failing/fail_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_int.json -------------------------------------------------------------------------------- /test/failing/fail_jsonarg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_jsonarg.json -------------------------------------------------------------------------------- /test/failing/fail_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_list.json -------------------------------------------------------------------------------- /test/failing/fail_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_path.json -------------------------------------------------------------------------------- /test/failing/fail_req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_req.json -------------------------------------------------------------------------------- /test/failing/fail_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_string.json -------------------------------------------------------------------------------- /test/failing/fail_unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/failing/fail_unknown.json -------------------------------------------------------------------------------- /test/valid/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/valid/valid.json -------------------------------------------------------------------------------- /test/valid/valid_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/valid/valid_change.json -------------------------------------------------------------------------------- /test/valid/valid_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/valid/valid_defaults.json -------------------------------------------------------------------------------- /test/valid/valid_stringly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/valid/valid_stringly.json -------------------------------------------------------------------------------- /test/valid/valid_stringly2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noctux/philote/HEAD/test/valid/valid_stringly2.json --------------------------------------------------------------------------------