* Add remote mode for harvesting a remote machine via a local workstation (no need to install enroll remotely) Optionally use `--no-sudo` if you don't want the remote user to have passwordless sudo when conducting the harvest, albeit you'll end up with less useful data (same as if running `enroll harvest` on a machine without sudo) * Add `--dangerous` flag to capture even sensitive data (use at your own risk!) * Do a better job at capturing other config files in `/etc/<package>/` even if that package doesn't normally ship or manage those files.
30 lines
689 B
TOML
30 lines
689 B
TOML
[tool.poetry]
|
|
name = "enroll"
|
|
version = "0.0.5"
|
|
description = "Enroll a server's running state retrospectively into Ansible"
|
|
authors = ["Miguel Jacq <mig@mig5.net>"]
|
|
license = "GPL-3.0-or-later"
|
|
readme = "README.md"
|
|
packages = [{ include = "enroll" }]
|
|
repository = "https://git.mig5.net/mig5/enroll"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
pyyaml = "^6.0.3"
|
|
paramiko = "^4.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
enroll = "enroll.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.8.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pyproject-appimage]
|
|
script = "enroll"
|
|
output = "Enroll.AppImage"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^8"
|
|
pytest-cov = "^5"
|
|
pyproject-appimage = "^4.2"
|