offspot-config 1.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- offspot_config-1.3.0/.gitignore +212 -0
- offspot_config-1.3.0/.pre-commit-config.yaml +21 -0
- offspot_config-1.3.0/CHANGELOG.md +48 -0
- offspot_config-1.3.0/LICENSE +674 -0
- offspot_config-1.3.0/PKG-INFO +254 -0
- offspot_config-1.3.0/README.md +209 -0
- offspot_config-1.3.0/pyproject.toml +260 -0
- offspot_config-1.3.0/src/offspot_config/__init__.py +0 -0
- offspot_config-1.3.0/src/offspot_config/builder.py +416 -0
- offspot_config-1.3.0/src/offspot_config/catalog.py +37 -0
- offspot_config-1.3.0/src/offspot_config/constants.py +56 -0
- offspot_config-1.3.0/src/offspot_config/file.py +123 -0
- offspot_config-1.3.0/src/offspot_config/inputs.py +183 -0
- offspot_config-1.3.0/src/offspot_config/oci_images.py +48 -0
- offspot_config-1.3.0/src/offspot_config/packages.py +168 -0
- offspot_config-1.3.0/src/offspot_config/utils/__init__.py +0 -0
- offspot_config-1.3.0/src/offspot_config/utils/download.py +52 -0
- offspot_config-1.3.0/src/offspot_config/utils/misc.py +385 -0
- offspot_config-1.3.0/src/offspot_config/utils/yaml.py +49 -0
- offspot_config-1.3.0/src/offspot_config/zim.py +58 -0
- offspot_config-1.3.0/src/offspot_runtime/__about__.py +1 -0
- offspot_config-1.3.0/src/offspot_runtime/__init__.py +0 -0
- offspot_config-1.3.0/src/offspot_runtime/ap.py +597 -0
- offspot_config-1.3.0/src/offspot_runtime/checks.py +559 -0
- offspot_config-1.3.0/src/offspot_runtime/configlib.py +176 -0
- offspot_config-1.3.0/src/offspot_runtime/containers.py +98 -0
- offspot_config-1.3.0/src/offspot_runtime/dnsmasqspoof.py +123 -0
- offspot_config-1.3.0/src/offspot_runtime/ethernet.py +188 -0
- offspot_config-1.3.0/src/offspot_runtime/fromfile.py +279 -0
- offspot_config-1.3.0/src/offspot_runtime/hostname.py +84 -0
- offspot_config-1.3.0/src/offspot_runtime/timezone.py +70 -0
- offspot_config-1.3.0/tasks.py +104 -0
- offspot_config-1.3.0/tests/test_checks.py +659 -0
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# Created by https://www.toptal.com/developers/gitignore/api/python,macos
|
|
2
|
+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,macos
|
|
3
|
+
|
|
4
|
+
### macOS ###
|
|
5
|
+
# General
|
|
6
|
+
.DS_Store
|
|
7
|
+
.AppleDouble
|
|
8
|
+
.LSOverride
|
|
9
|
+
|
|
10
|
+
# Icon must end with two \r
|
|
11
|
+
Icon
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Thumbnails
|
|
15
|
+
._*
|
|
16
|
+
|
|
17
|
+
# Files that might appear in the root of a volume
|
|
18
|
+
.DocumentRevisions-V100
|
|
19
|
+
.fseventsd
|
|
20
|
+
.Spotlight-V100
|
|
21
|
+
.TemporaryItems
|
|
22
|
+
.Trashes
|
|
23
|
+
.VolumeIcon.icns
|
|
24
|
+
.com.apple.timemachine.donotpresent
|
|
25
|
+
|
|
26
|
+
# Directories potentially created on remote AFP share
|
|
27
|
+
.AppleDB
|
|
28
|
+
.AppleDesktop
|
|
29
|
+
Network Trash Folder
|
|
30
|
+
Temporary Items
|
|
31
|
+
.apdisk
|
|
32
|
+
|
|
33
|
+
### macOS Patch ###
|
|
34
|
+
# iCloud generated files
|
|
35
|
+
*.icloud
|
|
36
|
+
|
|
37
|
+
### Python ###
|
|
38
|
+
# Byte-compiled / optimized / DLL files
|
|
39
|
+
__pycache__/
|
|
40
|
+
*.py[cod]
|
|
41
|
+
*$py.class
|
|
42
|
+
|
|
43
|
+
# C extensions
|
|
44
|
+
*.so
|
|
45
|
+
|
|
46
|
+
# Distribution / packaging
|
|
47
|
+
.Python
|
|
48
|
+
build/
|
|
49
|
+
develop-eggs/
|
|
50
|
+
dist/
|
|
51
|
+
downloads/
|
|
52
|
+
eggs/
|
|
53
|
+
.eggs/
|
|
54
|
+
lib/
|
|
55
|
+
lib64/
|
|
56
|
+
parts/
|
|
57
|
+
sdist/
|
|
58
|
+
var/
|
|
59
|
+
wheels/
|
|
60
|
+
share/python-wheels/
|
|
61
|
+
*.egg-info/
|
|
62
|
+
.installed.cfg
|
|
63
|
+
*.egg
|
|
64
|
+
MANIFEST
|
|
65
|
+
|
|
66
|
+
# PyInstaller
|
|
67
|
+
# Usually these files are written by a python script from a template
|
|
68
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
69
|
+
*.manifest
|
|
70
|
+
*.spec
|
|
71
|
+
|
|
72
|
+
# Installer logs
|
|
73
|
+
pip-log.txt
|
|
74
|
+
pip-delete-this-directory.txt
|
|
75
|
+
|
|
76
|
+
# Unit test / coverage reports
|
|
77
|
+
htmlcov/
|
|
78
|
+
.tox/
|
|
79
|
+
.nox/
|
|
80
|
+
.coverage
|
|
81
|
+
.coverage.*
|
|
82
|
+
.cache
|
|
83
|
+
nosetests.xml
|
|
84
|
+
coverage.xml
|
|
85
|
+
*.cover
|
|
86
|
+
*.py,cover
|
|
87
|
+
.hypothesis/
|
|
88
|
+
.pytest_cache/
|
|
89
|
+
cover/
|
|
90
|
+
|
|
91
|
+
# Translations
|
|
92
|
+
*.mo
|
|
93
|
+
*.pot
|
|
94
|
+
|
|
95
|
+
# Django stuff:
|
|
96
|
+
*.log
|
|
97
|
+
local_settings.py
|
|
98
|
+
db.sqlite3
|
|
99
|
+
db.sqlite3-journal
|
|
100
|
+
|
|
101
|
+
# Flask stuff:
|
|
102
|
+
instance/
|
|
103
|
+
.webassets-cache
|
|
104
|
+
|
|
105
|
+
# Scrapy stuff:
|
|
106
|
+
.scrapy
|
|
107
|
+
|
|
108
|
+
# Sphinx documentation
|
|
109
|
+
docs/_build/
|
|
110
|
+
|
|
111
|
+
# PyBuilder
|
|
112
|
+
.pybuilder/
|
|
113
|
+
target/
|
|
114
|
+
|
|
115
|
+
# Jupyter Notebook
|
|
116
|
+
.ipynb_checkpoints
|
|
117
|
+
|
|
118
|
+
# IPython
|
|
119
|
+
profile_default/
|
|
120
|
+
ipython_config.py
|
|
121
|
+
|
|
122
|
+
# pyenv
|
|
123
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
124
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
125
|
+
# .python-version
|
|
126
|
+
|
|
127
|
+
# pipenv
|
|
128
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
129
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
130
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
131
|
+
# install all needed dependencies.
|
|
132
|
+
#Pipfile.lock
|
|
133
|
+
|
|
134
|
+
# poetry
|
|
135
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
136
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
137
|
+
# commonly ignored for libraries.
|
|
138
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
139
|
+
#poetry.lock
|
|
140
|
+
|
|
141
|
+
# pdm
|
|
142
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
143
|
+
#pdm.lock
|
|
144
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
145
|
+
# in version control.
|
|
146
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
147
|
+
.pdm.toml
|
|
148
|
+
|
|
149
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
150
|
+
__pypackages__/
|
|
151
|
+
|
|
152
|
+
# Celery stuff
|
|
153
|
+
celerybeat-schedule
|
|
154
|
+
celerybeat.pid
|
|
155
|
+
|
|
156
|
+
# SageMath parsed files
|
|
157
|
+
*.sage.py
|
|
158
|
+
|
|
159
|
+
# Environments
|
|
160
|
+
.env
|
|
161
|
+
.venv
|
|
162
|
+
env/
|
|
163
|
+
venv/
|
|
164
|
+
ENV/
|
|
165
|
+
env.bak/
|
|
166
|
+
venv.bak/
|
|
167
|
+
|
|
168
|
+
# Spyder project settings
|
|
169
|
+
.spyderproject
|
|
170
|
+
.spyproject
|
|
171
|
+
|
|
172
|
+
# Rope project settings
|
|
173
|
+
.ropeproject
|
|
174
|
+
|
|
175
|
+
# mkdocs documentation
|
|
176
|
+
/site
|
|
177
|
+
|
|
178
|
+
# mypy
|
|
179
|
+
.mypy_cache/
|
|
180
|
+
.dmypy.json
|
|
181
|
+
dmypy.json
|
|
182
|
+
|
|
183
|
+
# Pyre type checker
|
|
184
|
+
.pyre/
|
|
185
|
+
|
|
186
|
+
# pytype static type analyzer
|
|
187
|
+
.pytype/
|
|
188
|
+
|
|
189
|
+
# Cython debug symbols
|
|
190
|
+
cython_debug/
|
|
191
|
+
|
|
192
|
+
# PyCharm
|
|
193
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
194
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
195
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
196
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
197
|
+
#.idea/
|
|
198
|
+
|
|
199
|
+
### Python Patch ###
|
|
200
|
+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
|
201
|
+
poetry.toml
|
|
202
|
+
|
|
203
|
+
# ruff
|
|
204
|
+
.ruff_cache/
|
|
205
|
+
|
|
206
|
+
# LSP config files
|
|
207
|
+
pyrightconfig.json
|
|
208
|
+
|
|
209
|
+
# End of https://www.toptal.com/developers/gitignore/api/python,macos
|
|
210
|
+
|
|
211
|
+
# ignore all vscode, this is not standard configuration in this place
|
|
212
|
+
.vscode
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# See https://pre-commit.com for more information
|
|
2
|
+
# See https://pre-commit.com/hooks.html for more hooks
|
|
3
|
+
repos:
|
|
4
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
5
|
+
rev: v4.4.0
|
|
6
|
+
hooks:
|
|
7
|
+
- id: trailing-whitespace
|
|
8
|
+
- id: end-of-file-fixer
|
|
9
|
+
- repo: https://github.com/psf/black
|
|
10
|
+
rev: "23.7.0"
|
|
11
|
+
hooks:
|
|
12
|
+
- id: black
|
|
13
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
14
|
+
rev: v0.0.282
|
|
15
|
+
hooks:
|
|
16
|
+
- id: ruff
|
|
17
|
+
- repo: https://github.com/RobertCraigie/pyright-python
|
|
18
|
+
rev: v1.1.321
|
|
19
|
+
hooks:
|
|
20
|
+
- id: pyright
|
|
21
|
+
entry: hatch run check:all
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
# [1.3.0] - 2023-08-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Now bundling `offspot_config` module as well
|
|
13
|
+
|
|
14
|
+
# [1.2.0] - 2023-03-07
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `checks` module to test YAML configuration file values
|
|
19
|
+
- most checks more resilient as checking input types
|
|
20
|
+
- timezones actualy checked for existence instead of vague timezone-looking regex
|
|
21
|
+
- compose checking now includes (optional) image presence checking and exposure of ports
|
|
22
|
+
- ipv4 addresses are now checked for being actual IPv4 addresses with a flag to check if usable
|
|
23
|
+
- network checks now checks for valid network strings and compatibility with related IP address
|
|
24
|
+
- WiFi country code now checked for being an actual country code.
|
|
25
|
+
- Added support (and as default) for 00 country code meaning less-permissive radio options
|
|
26
|
+
- dhcp-range checks now checking for actual IP ranges with netwmask and host IP. ttl is also checked
|
|
27
|
+
- unit tests for checks module (100% covered)
|
|
28
|
+
- test workflow
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- fixed setup.py using a static `1.0` version instead of version reported to scripts
|
|
33
|
+
- renamed module from `offspot_runtime_config` to `offspot_runtime`
|
|
34
|
+
- renamed `offspot_config_lib` sub-module to `configlib`
|
|
35
|
+
- Fixed disabling auto-spoof apparently failing due to lack of return code
|
|
36
|
+
- `ap.dhcp_range_for()` now calculates an actual range instead of replacing strings
|
|
37
|
+
- updated QA worflow
|
|
38
|
+
- fixed program name in usage of scripts
|
|
39
|
+
|
|
40
|
+
# [1.1.0] - 2022-11-16
|
|
41
|
+
|
|
42
|
+
## Added
|
|
43
|
+
|
|
44
|
+
- `auto` option for `spoof` param in `ap` to adjust based on internet connectivity
|
|
45
|
+
|
|
46
|
+
# [1.0.0] - 2022-10-05
|
|
47
|
+
|
|
48
|
+
- initial version
|