diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4fab2ca..75665e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@
* BREAKING CHANGE: Only capture user-specific .bashrc style files when using `--dangerous` mode, in case they contain sensitive env vars.
* Detect active sysctl parameters and write them to a `/etc/sysctl.d/99-enroll.conf` file
* Use `no_log` on systemd unit interrogations to suppress potential sensitive output when applying Ansible
+ * Support manifesting Puppet code, as well as Ansible!
# 0.6.0
diff --git a/README.md b/README.md
index d508b6b..7f30c39 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
-**enroll** inspects a Linux machine (Debian-like or RedHat-like) and generates Ansible roles/playbooks (and optionally inventory) for what it finds.
+**enroll** inspects a Linux machine (Debian-like or RedHat-like) and generates configuration-management code: Ansible roles/playbooks by default, or Puppet control-repo style output for what it finds.
- Detects packages that have been installed.
- Detects package ownership of `/etc` files where possible
@@ -26,7 +26,7 @@
`enroll` works in two phases:
1) **Harvest**: collect host facts + relevant files into a harvest bundle (`state.json` + harvested artifacts)
-2) **Manifest**: turn that harvest into Ansible roles/playbooks (and optionally inventory)
+2) **Manifest**: turn that harvest into configuration-management code such as Ansible roles/playbooks or Puppet manifests
Additionally, some other functionalities exist:
@@ -37,7 +37,7 @@ Additionally, some other functionalities exist:
## Output modes: single-site vs multi-site (`--fqdn`)
-`enroll manifest` (and `enroll single-shot`) support two distinct output styles.
+`enroll manifest` (and `enroll single-shot`) support multiple output targets. Ansible is the default target and supports two distinct output styles.
### Single-site mode (default: *no* `--fqdn`)
Use when enrolling **one server** (or generating a “golden” role set you intend to reuse).
@@ -120,18 +120,20 @@ enroll single-shot --remote-host myhost.example.com --remote-user myuser --ssh-k
---
### `enroll manifest`
-Generate Ansible output from an existing harvest bundle.
+Generate configuration-management output from an existing harvest bundle. Ansible remains the default; use `--target puppet` for Puppet output.
**Inputs**
- `--harvest /path/to/harvest` (directory)
or `--harvest /path/to/harvest.tar.gz.sops` (if using `--sops`)
**Output**
-- In plaintext mode: an Ansible repo-like directory structure (roles/playbooks, and inventory in multi-site mode).
+- In plaintext Ansible mode: an Ansible repo-like directory structure (roles/playbooks, and inventory in multi-site mode).
+- In plaintext Puppet mode: a Puppet control-repo style layout with `manifests/site.pp` and generated modules under `modules/`. By default, package and service resources are grouped by Debian Section/RPM Group where possible; `--fqdn` or `--no-common-roles` preserves one generated module per Enroll role/snapshot.
- In `--sops` mode: a single encrypted file `manifest.tar.gz.sops` containing the generated output.
**Common flags**
-- `--fqdn `: enables **multi-site** output style
+- `--target ansible|puppet`: choose the manifest target (`ansible` is the default).
+- `--fqdn `: enables **multi-site** output style for Ansible, or emits a Puppet `node ''` block. Without `--fqdn`, Puppet emits `node default { ... }`.
- `--no-common-roles`: disables the default grouping of package and systemd-unit roles into Debian Section/RPM Group roles, preserving one generated role per package/unit. `--fqdn` implies this behaviour.
**Role tags**
@@ -152,7 +154,7 @@ Convenience wrapper that runs **harvest → manifest** in one command.
Use this when you want “get me something workable ASAP”.
-Supports the same general flags as harvest/manifest, including `--fqdn`, `--no-common-roles`, remote harvest flags, and `--sops`.
+Supports the same general flags as harvest/manifest, including `--target`, `--fqdn`, `--no-common-roles`, remote harvest flags, and `--sops`.
---
@@ -438,6 +440,26 @@ enroll manifest --harvest /tmp/enroll-harvest --out /tmp/enroll-ansible
enroll manifest --harvest /tmp/enroll-harvest --out /tmp/enroll-ansible --fqdn "$(hostname -f)"
```
+### Puppet target
+```bash
+enroll manifest --harvest /tmp/enroll-harvest --out /tmp/enroll-puppet --target puppet
+```
+
+The Puppet target renders native packages, users/groups, managed directories/files/symlinks, basic service state, and the generated sysctl file/apply exec when present. Without `--fqdn`, `site.pp` uses `node default { ... }`; with `--fqdn`, it uses `node '' { ... }`. Run from the generated output directory with the generated modules on Puppet's module path, for example:
+
+```bash
+cd /tmp/enroll-puppet
+sudo puppet apply --modulepath ./modules manifests/site.pp --noop
+```
+
+Or with absolute paths:
+
+```bash
+sudo puppet apply --modulepath /tmp/enroll-puppet/modules /tmp/enroll-puppet/manifests/site.pp --noop
+```
+
+Flatpak, Snap, and live firewall runtime snapshots are listed as notes in the generated Puppet README rather than converted into Puppet resources.
+
### Manifest with `--sops`
```bash
# Generate encrypted manifest bundle (writes /tmp/enroll-ansible/manifest.tar.gz.sops)
diff --git a/enroll/cli.py b/enroll/cli.py
index a621928..7106d7a 100644
--- a/enroll/cli.py
+++ b/enroll/cli.py
@@ -308,6 +308,12 @@ def _encrypt_harvest_dir_to_sops(
def _add_common_manifest_args(p: argparse.ArgumentParser) -> None:
+ p.add_argument(
+ "--target",
+ choices=["ansible", "puppet"],
+ default="ansible",
+ help="Manifest target to generate (default: ansible). Puppet output is an initial conservative target.",
+ )
p.add_argument(
"--fqdn",
help="Host FQDN/name for site-mode output (creates inventory/, inventory/host_vars/, playbooks/).",
@@ -482,7 +488,9 @@ def main() -> None:
help="Don't use sudo on the remote host (when using --remote options). This may result in a limited harvest due to permission restrictions.",
)
- m = sub.add_parser("manifest", help="Render Ansible roles from a harvest")
+ m = sub.add_parser(
+ "manifest", help="Render configuration-management code from a harvest"
+ )
_add_config_args(m)
m.add_argument(
"--harvest",
@@ -514,7 +522,8 @@ def main() -> None:
_add_common_manifest_args(m)
s = sub.add_parser(
- "single-shot", help="Harvest state, then manifest Ansible code, in one shot"
+ "single-shot",
+ help="Harvest state, then manifest configuration-management code, in one shot",
)
_add_config_args(s)
_add_remote_args(s)
@@ -920,6 +929,7 @@ def main() -> None:
jinjaturtle=_jt_mode(args),
sops_fingerprints=getattr(args, "sops", None),
no_common_roles=bool(getattr(args, "no_common_roles", False)),
+ target=getattr(args, "target", "ansible"),
)
if getattr(args, "sops", None) and out_enc:
print(str(out_enc))
@@ -1058,6 +1068,7 @@ def main() -> None:
jinjaturtle=_jt_mode(args),
sops_fingerprints=list(sops_fps),
no_common_roles=bool(getattr(args, "no_common_roles", False)),
+ target=getattr(args, "target", "ansible"),
)
if not args.harvest:
print(str(out_file))
@@ -1089,6 +1100,7 @@ def main() -> None:
fqdn=args.fqdn,
jinjaturtle=_jt_mode(args),
no_common_roles=bool(getattr(args, "no_common_roles", False)),
+ target=getattr(args, "target", "ansible"),
)
# For usability (when --harvest wasn't provided), print the harvest path.
if not args.harvest:
@@ -1120,6 +1132,7 @@ def main() -> None:
jinjaturtle=_jt_mode(args),
sops_fingerprints=list(sops_fps),
no_common_roles=bool(getattr(args, "no_common_roles", False)),
+ target=getattr(args, "target", "ansible"),
)
if not args.harvest:
print(str(out_file))
@@ -1140,6 +1153,7 @@ def main() -> None:
fqdn=args.fqdn,
jinjaturtle=_jt_mode(args),
no_common_roles=bool(getattr(args, "no_common_roles", False)),
+ target=getattr(args, "target", "ansible"),
)
except RemoteSudoPasswordRequired:
raise SystemExit(
diff --git a/enroll/manifest.py b/enroll/manifest.py
index a643f48..97e26e7 100644
--- a/enroll/manifest.py
+++ b/enroll/manifest.py
@@ -11,6 +11,7 @@ from pathlib import Path
from typing import Any, Dict, List, Optional, Set, Tuple
from .role_names import avoid_reserved_role_name
+from .puppet import manifest_puppet_from_bundle_dir
from .jinjaturtle import (
can_jinjify_path,
@@ -1039,7 +1040,7 @@ def _encrypt_manifest_out_dir_to_sops(
return out_file
-def _manifest_from_bundle_dir(
+def _manifest_ansible_from_bundle_dir(
bundle_dir: str,
out_dir: str,
*,
@@ -3247,8 +3248,9 @@ def manifest(
jinjaturtle: str = "auto", # auto|on|off
sops_fingerprints: Optional[List[str]] = None,
no_common_roles: bool = False,
+ target: str = "ansible",
) -> Optional[str]:
- """Render an Ansible manifest from a harvest.
+ """Render a configuration-management manifest from a harvest.
Plain mode:
- `bundle_dir` must be a directory
@@ -3264,6 +3266,10 @@ def manifest(
- In SOPS mode: the path to the encrypted manifest bundle (.sops)
- In plain mode: None
"""
+ target = (target or "ansible").strip().lower()
+ if target not in {"ansible", "puppet"}:
+ raise ValueError(f"unsupported manifest target: {target!r}")
+
sops_mode = bool(sops_fingerprints)
# Decrypt/extract the harvest bundle if needed.
@@ -3274,13 +3280,21 @@ def manifest(
td_out: Optional[tempfile.TemporaryDirectory] = None
try:
if not sops_mode:
- _manifest_from_bundle_dir(
- resolved_bundle_dir,
- out,
- fqdn=fqdn,
- jinjaturtle=jinjaturtle,
- no_common_roles=no_common_roles,
- )
+ if target == "puppet":
+ manifest_puppet_from_bundle_dir(
+ resolved_bundle_dir,
+ out,
+ fqdn=fqdn,
+ no_common_roles=no_common_roles,
+ )
+ else:
+ _manifest_ansible_from_bundle_dir(
+ resolved_bundle_dir,
+ out,
+ fqdn=fqdn,
+ jinjaturtle=jinjaturtle,
+ no_common_roles=no_common_roles,
+ )
return None
# SOPS mode: generate into a secure temp dir, then tar+encrypt into a single file.
@@ -3294,13 +3308,21 @@ def manifest(
except OSError:
pass
- _manifest_from_bundle_dir(
- resolved_bundle_dir,
- str(tmp_out),
- fqdn=fqdn,
- jinjaturtle=jinjaturtle,
- no_common_roles=no_common_roles,
- )
+ if target == "puppet":
+ manifest_puppet_from_bundle_dir(
+ resolved_bundle_dir,
+ str(tmp_out),
+ fqdn=fqdn,
+ no_common_roles=no_common_roles,
+ )
+ else:
+ _manifest_ansible_from_bundle_dir(
+ resolved_bundle_dir,
+ str(tmp_out),
+ fqdn=fqdn,
+ jinjaturtle=jinjaturtle,
+ no_common_roles=no_common_roles,
+ )
enc = _encrypt_manifest_out_dir_to_sops(
tmp_out, out_file, list(sops_fingerprints or [])
diff --git a/enroll/puppet.py b/enroll/puppet.py
new file mode 100644
index 0000000..a051a75
--- /dev/null
+++ b/enroll/puppet.py
@@ -0,0 +1,759 @@
+from __future__ import annotations
+
+import json
+import os
+import re
+import shutil
+from pathlib import Path
+from typing import Any, Dict, Iterable, List, Optional, Set, Tuple
+
+
+def _load_state(bundle_dir: str) -> Dict[str, Any]:
+ with open(os.path.join(bundle_dir, "state.json"), "r", encoding="utf-8") as f:
+ return json.load(f)
+
+
+_RESERVED_PUPPET_NAMES = {
+ "application",
+ "class",
+ "default",
+ "define",
+ "import",
+ "inherits",
+ "node",
+ "site",
+}
+
+
+def _puppet_name(raw: str, *, fallback: str = "role") -> str:
+ s = re.sub(r"[^A-Za-z0-9_]+", "_", raw or fallback)
+ s = re.sub(r"_+", "_", s).strip("_").lower()
+ if not s:
+ s = fallback
+ if not re.match(r"^[a-z]", s):
+ s = f"{fallback}_{s}"
+ if s in _RESERVED_PUPPET_NAMES:
+ s = f"{fallback}_{s}"
+ return s
+
+
+def _pp_quote(value: Any) -> str:
+ s = str(value)
+ s = s.replace("\\", "\\\\").replace("'", "\\'")
+ return f"'{s}'"
+
+
+def _pp_bool(value: bool) -> str:
+ return "true" if bool(value) else "false"
+
+
+def _pp_array(values: Iterable[Any]) -> str:
+ return "[" + ", ".join(_pp_quote(v) for v in values) + "]"
+
+
+def _resource(
+ lines: List[str], rtype: str, title: str, attrs: List[Tuple[str, str]]
+) -> None:
+ lines.append(f" {rtype} {{ {_pp_quote(title)}:")
+ for key, value in attrs:
+ lines.append(f" {key} => {value},")
+ lines.append(" }")
+ lines.append("")
+
+
+def _copy_artifact(
+ bundle_dir: str, role: str, src_rel: str, dst_files_dir: Path
+) -> Optional[str]:
+ if not role or not src_rel:
+ return None
+ src = Path(bundle_dir) / "artifacts" / role / src_rel
+ if not src.is_file():
+ return None
+ dst = dst_files_dir / src_rel
+ dst.parent.mkdir(parents=True, exist_ok=True)
+ shutil.copy2(src, dst)
+ return Path(src_rel).as_posix()
+
+
+def _source_uri(module_name: str, module_rel: str) -> str:
+ return f"puppet:///modules/{module_name}/{module_rel}"
+
+
+def _roles(state: Dict[str, Any]) -> Dict[str, Any]:
+ roles = state.get("roles")
+ return roles if isinstance(roles, dict) else {}
+
+
+def _inventory_packages(state: Dict[str, Any]) -> Dict[str, Any]:
+ inventory = state.get("inventory")
+ if not isinstance(inventory, dict):
+ return {}
+ packages = inventory.get("packages")
+ return packages if isinstance(packages, dict) else {}
+
+
+def _package_section_label(
+ package_role: Dict[str, Any], inventory_packages: Dict[str, Any]
+) -> str:
+ pkg = str(package_role.get("package") or "").strip()
+ inv = inventory_packages.get(pkg) or {}
+ candidates: List[str] = []
+ for value in (package_role.get("section"), inv.get("section"), inv.get("group")):
+ if isinstance(value, str) and value.strip():
+ candidates.append(value.strip())
+ for inst in inv.get("installations", []) or []:
+ if not isinstance(inst, dict):
+ continue
+ for key in ("section", "group"):
+ value = inst.get(key)
+ if isinstance(value, str) and value.strip():
+ candidates.append(value.strip())
+ for value in candidates:
+ if value.lower() not in {"(none)", "none", "unspecified"}:
+ return value
+ return "misc"
+
+
+def _section_label_for_packages(
+ packages: List[str], inventory_packages: Dict[str, Any]
+) -> str:
+ for pkg in packages or []:
+ label = _package_section_label({"package": pkg}, inventory_packages)
+ if label and label.lower() != "misc":
+ return label
+ return "misc"
+
+
+class _PuppetRole:
+ def __init__(self, role_name: str) -> None:
+ self.role_name = role_name
+ self.module_name = _puppet_name(role_name, fallback="enroll_role")
+ self.packages: Set[str] = set()
+ self.groups: Set[str] = set()
+ self.users: Dict[str, Dict[str, Any]] = {}
+ self.dirs: Dict[str, Dict[str, Any]] = {}
+ self.files: Dict[str, Dict[str, Any]] = {}
+ self.links: Dict[str, Dict[str, Any]] = {}
+ self.services: Dict[str, Dict[str, Any]] = {}
+ self.notes: List[str] = []
+
+ def has_resources(self) -> bool:
+ return bool(
+ self.packages
+ or self.groups
+ or self.users
+ or self.dirs
+ or self.files
+ or self.links
+ or self.services
+ or self.notes
+ )
+
+
+def _role_order_key(role: str) -> tuple[int, str]:
+ # Keep broadly similar ordering to generated Ansible playbooks: package/config
+ # scaffolding first, then services/users, then host-specific runtime state.
+ priority = {
+ "apt_config": 10,
+ "dnf_config": 11,
+ "etc_custom": 80,
+ "usr_local_custom": 81,
+ "extra_paths": 82,
+ "users": 90,
+ "sysctl": 95,
+ "firewall_runtime": 99,
+ }
+ return (priority.get(role, 50), role)
+
+
+def _add_managed_content(
+ prole: _PuppetRole,
+ snap: Dict[str, Any],
+ *,
+ bundle_dir: str,
+ artifact_role: str,
+ module_files_dir: Path,
+) -> None:
+ for d in snap.get("managed_dirs", []) or []:
+ if not isinstance(d, dict):
+ continue
+ path = str(d.get("path") or "").strip()
+ if not path:
+ continue
+ prole.dirs.setdefault(
+ path,
+ {
+ "owner": d.get("owner") or "root",
+ "group": d.get("group") or "root",
+ "mode": d.get("mode") or "0755",
+ "reason": d.get("reason") or "managed_dir",
+ },
+ )
+
+ for mf in snap.get("managed_files", []) or []:
+ if not isinstance(mf, dict):
+ continue
+ path = str(mf.get("path") or "").strip()
+ src_rel = str(mf.get("src_rel") or "").strip()
+ if not path or not src_rel:
+ continue
+ module_rel = _copy_artifact(
+ bundle_dir, artifact_role, src_rel, module_files_dir
+ )
+ if not module_rel:
+ prole.notes.append(
+ f"Skipped {path}: harvested artifact {artifact_role}/{src_rel} was not present."
+ )
+ continue
+ prole.files.setdefault(
+ path,
+ {
+ "owner": mf.get("owner") or "root",
+ "group": mf.get("group") or "root",
+ "mode": mf.get("mode") or "0644",
+ "source": _source_uri(prole.module_name, module_rel),
+ "reason": mf.get("reason") or "managed_file",
+ },
+ )
+
+ for ml in snap.get("managed_links", []) or []:
+ if not isinstance(ml, dict):
+ continue
+ path = str(ml.get("path") or "").strip()
+ target = str(ml.get("target") or "").strip()
+ if not path or not target:
+ continue
+ prole.links.setdefault(
+ path,
+ {
+ "target": target,
+ "reason": ml.get("reason") or "managed_link",
+ },
+ )
+
+ for path in set(prole.files) | set(prole.links):
+ prole.dirs.pop(path, None)
+
+
+def _build_users_role(prole: _PuppetRole, snap: Dict[str, Any]) -> None:
+ for u in snap.get("users", []) or []:
+ if not isinstance(u, dict):
+ continue
+ name = str(u.get("name") or "").strip()
+ if not name:
+ continue
+ primary_group = str(u.get("primary_group") or name).strip()
+ if primary_group:
+ prole.groups.add(primary_group)
+ supplementary = sorted(
+ {
+ str(g).strip()
+ for g in (u.get("supplementary_groups") or [])
+ if str(g).strip()
+ }
+ )
+ prole.groups.update(supplementary)
+ prole.users[name] = {
+ "name": name,
+ "uid": u.get("uid"),
+ "gid": u.get("gid"),
+ "primary_group": primary_group or None,
+ "home": u.get("home") or f"/home/{name}",
+ "shell": u.get("shell"),
+ "gecos": u.get("gecos"),
+ "supplementary_groups": supplementary,
+ }
+
+ if snap.get("user_flatpaks") or snap.get("user_flatpak_remotes"):
+ prole.notes.append(
+ "Per-user Flatpak resources were detected but are not yet rendered as native Puppet resources."
+ )
+
+
+def _build_service_role(prole: _PuppetRole, snap: Dict[str, Any]) -> None:
+ for pkg in snap.get("packages", []) or []:
+ pkg_s = str(pkg or "").strip()
+ if pkg_s:
+ prole.packages.add(pkg_s)
+ unit = str(snap.get("unit") or "").strip()
+ if unit:
+ unit_file_state = str(snap.get("unit_file_state") or "")
+ prole.services[unit] = {
+ "name": unit,
+ "ensure": "running" if snap.get("active_state") == "active" else "stopped",
+ "enable": unit_file_state in ("enabled", "enabled-runtime"),
+ }
+
+
+def _build_package_role(prole: _PuppetRole, snap: Dict[str, Any]) -> None:
+ pkg = str(snap.get("package") or "").strip()
+ if pkg:
+ prole.packages.add(pkg)
+
+
+def _add_flatpak_snap_notes(roles: Dict[str, Any], out: Dict[str, _PuppetRole]) -> None:
+ flatpak = roles.get("flatpak") or {}
+ if isinstance(flatpak, dict) and (
+ flatpak.get("system_flatpaks") or flatpak.get("remotes")
+ ):
+ prole = out.setdefault("flatpak", _PuppetRole("flatpak"))
+ prole.notes.append(
+ "Flatpak resources were detected but are not yet rendered as native Puppet resources."
+ )
+ snap = roles.get("snap") or {}
+ if isinstance(snap, dict) and snap.get("system_snaps"):
+ prole = out.setdefault("snap", _PuppetRole("snap"))
+ prole.notes.append(
+ "Snap resources were detected but are not yet rendered as native Puppet resources."
+ )
+
+
+def _collect_puppet_roles(
+ state: Dict[str, Any],
+ bundle_dir: str,
+ modules_dir: Path,
+ *,
+ fqdn: Optional[str] = None,
+ no_common_roles: bool = False,
+) -> List[_PuppetRole]:
+ roles = _roles(state)
+ inventory_packages = _inventory_packages(state)
+ use_common_modules = not fqdn and not no_common_roles
+ out: Dict[str, _PuppetRole] = {}
+
+ def ensure_role(role_name: str) -> _PuppetRole:
+ role_name = _puppet_name(role_name, fallback="enroll_role")
+ return out.setdefault(role_name, _PuppetRole(role_name))
+
+ for key in (
+ "apt_config",
+ "dnf_config",
+ "etc_custom",
+ "usr_local_custom",
+ "extra_paths",
+ "sysctl",
+ ):
+ snap = roles.get(key) or {}
+ if not isinstance(snap, dict):
+ continue
+ role_name = _puppet_name(
+ str(snap.get("role_name") or key), fallback="enroll_role"
+ )
+ prole = ensure_role(role_name)
+ module_files_dir = modules_dir / prole.module_name / "files"
+ _add_managed_content(
+ prole,
+ snap,
+ bundle_dir=bundle_dir,
+ artifact_role=str(snap.get("role_name") or key),
+ module_files_dir=module_files_dir,
+ )
+
+ users_snap = roles.get("users") or {}
+ if isinstance(users_snap, dict):
+ role_name = _puppet_name(
+ str(users_snap.get("role_name") or "users"), fallback="enroll_role"
+ )
+ prole = ensure_role(role_name)
+ _build_users_role(prole, users_snap)
+ _add_managed_content(
+ prole,
+ users_snap,
+ bundle_dir=bundle_dir,
+ artifact_role=str(users_snap.get("role_name") or "users"),
+ module_files_dir=modules_dir / prole.module_name / "files",
+ )
+
+ for svc in roles.get("services", []) or []:
+ if not isinstance(svc, dict):
+ continue
+ original_role_name = _puppet_name(
+ str(svc.get("role_name") or svc.get("unit") or "service"),
+ fallback="service",
+ )
+ if use_common_modules:
+ role_name = _puppet_name(
+ _section_label_for_packages(
+ [
+ str(p).strip()
+ for p in (svc.get("packages") or [])
+ if str(p).strip()
+ ],
+ inventory_packages,
+ ),
+ fallback="package_group",
+ )
+ else:
+ role_name = original_role_name
+ prole = ensure_role(role_name)
+ _build_service_role(prole, svc)
+ _add_managed_content(
+ prole,
+ svc,
+ bundle_dir=bundle_dir,
+ artifact_role=str(svc.get("role_name") or original_role_name),
+ module_files_dir=modules_dir / prole.module_name / "files",
+ )
+
+ for pkg in roles.get("packages", []) or []:
+ if not isinstance(pkg, dict):
+ continue
+ original_role_name = _puppet_name(
+ str(pkg.get("role_name") or pkg.get("package") or "package"),
+ fallback="package",
+ )
+ if use_common_modules:
+ role_name = _puppet_name(
+ _package_section_label(pkg, inventory_packages),
+ fallback="package_group",
+ )
+ else:
+ role_name = original_role_name
+ prole = ensure_role(role_name)
+ _build_package_role(prole, pkg)
+ _add_managed_content(
+ prole,
+ pkg,
+ bundle_dir=bundle_dir,
+ artifact_role=str(pkg.get("role_name") or original_role_name),
+ module_files_dir=modules_dir / prole.module_name / "files",
+ )
+
+ fw = roles.get("firewall_runtime") or {}
+ if isinstance(fw, dict):
+ has_fw = (
+ fw.get("ipset_save")
+ or fw.get("iptables_v4_save")
+ or fw.get("iptables_v6_save")
+ )
+ packages = [
+ str(p).strip() for p in (fw.get("packages") or []) if str(p).strip()
+ ]
+ if has_fw or packages:
+ prole = ensure_role(str(fw.get("role_name") or "firewall_runtime"))
+ prole.packages.update(packages)
+ if has_fw:
+ prole.notes.append(
+ "Live firewall runtime snapshots were detected but are not yet rendered as Puppet resources."
+ )
+
+ _add_flatpak_snap_notes(roles, out)
+
+ puppet_roles = sorted(out.values(), key=lambda r: _role_order_key(r.role_name))
+ _dedupe_puppet_roles(puppet_roles)
+ return [r for r in puppet_roles if r.has_resources()]
+
+
+def _dedupe_puppet_roles(puppet_roles: List[_PuppetRole]) -> None:
+ """Remove duplicate catalog resources across generated Puppet classes.
+
+ Ansible can repeat the same directory task in multiple roles. Puppet cannot:
+ a resource title such as File['/etc/default'] may appear only once in the
+ compiled catalog. Keep the first declaration in manifest order and drop
+ later duplicates.
+ """
+
+ concrete_file_paths: Set[str] = set()
+ for prole in puppet_roles:
+ concrete_file_paths.update(prole.files)
+ concrete_file_paths.update(prole.links)
+
+ seen_packages: Set[str] = set()
+ seen_groups: Set[str] = set()
+ seen_users: Set[str] = set()
+ seen_dirs: Set[str] = set()
+ seen_files: Set[str] = set()
+ seen_links: Set[str] = set()
+ seen_services: Set[str] = set()
+
+ for prole in puppet_roles:
+ prole.packages = {p for p in prole.packages if p not in seen_packages}
+ seen_packages.update(prole.packages)
+
+ prole.groups = {g for g in prole.groups if g not in seen_groups}
+ seen_groups.update(prole.groups)
+
+ prole.users = {k: v for k, v in prole.users.items() if k not in seen_users}
+ seen_users.update(prole.users)
+
+ prole.dirs = {
+ k: v
+ for k, v in prole.dirs.items()
+ if k not in seen_dirs and k not in concrete_file_paths
+ }
+ seen_dirs.update(prole.dirs)
+
+ prole.files = {
+ k: v
+ for k, v in prole.files.items()
+ if k not in seen_files and k not in seen_links
+ }
+ seen_files.update(prole.files)
+
+ prole.links = {
+ k: v
+ for k, v in prole.links.items()
+ if k not in seen_links and k not in seen_files
+ }
+ seen_links.update(prole.links)
+
+ prole.services = {
+ k: v for k, v in prole.services.items() if k not in seen_services
+ }
+ seen_services.update(prole.services)
+
+
+def _render_role_class(prole: _PuppetRole) -> str:
+ has_sysctl_conf = "/etc/sysctl.d/99-enroll.conf" in prole.files
+ if has_sysctl_conf:
+ lines: List[str] = [
+ "# Generated by Enroll from harvest state.",
+ f"class {prole.module_name} (",
+ " Boolean $sysctl_apply = true,",
+ " Boolean $sysctl_ignore_apply_errors = true,",
+ ") {",
+ "",
+ ]
+ else:
+ lines = [
+ "# Generated by Enroll from harvest state.",
+ f"class {prole.module_name} {{",
+ "",
+ ]
+
+ for package in sorted(prole.packages):
+ _resource(lines, "package", package, [("ensure", _pp_quote("installed"))])
+
+ for group in sorted(prole.groups):
+ _resource(lines, "group", group, [("ensure", _pp_quote("present"))])
+
+ for user in [prole.users[k] for k in sorted(prole.users)]:
+ attrs: List[Tuple[str, str]] = [
+ ("ensure", _pp_quote("present")),
+ ("managehome", _pp_bool(True)),
+ ]
+ if user.get("uid") is not None:
+ attrs.append(("uid", _pp_quote(user["uid"])))
+ if user.get("primary_group"):
+ attrs.append(("gid", _pp_quote(user["primary_group"])))
+ if user.get("home"):
+ attrs.append(("home", _pp_quote(user["home"])))
+ if user.get("shell"):
+ attrs.append(("shell", _pp_quote(user["shell"])))
+ if user.get("gecos"):
+ attrs.append(("comment", _pp_quote(user["gecos"])))
+ if user.get("supplementary_groups"):
+ attrs.append(("groups", _pp_array(user["supplementary_groups"])))
+ attrs.append(("membership", _pp_quote("minimum")))
+ _resource(lines, "user", user["name"], attrs)
+
+ for path, d in sorted(prole.dirs.items()):
+ _resource(
+ lines,
+ "file",
+ path,
+ [
+ ("ensure", _pp_quote("directory")),
+ ("owner", _pp_quote(d.get("owner") or "root")),
+ ("group", _pp_quote(d.get("group") or "root")),
+ ("mode", _pp_quote(d.get("mode") or "0755")),
+ ],
+ )
+
+ for path, f in sorted(prole.files.items()):
+ _resource(
+ lines,
+ "file",
+ path,
+ [
+ ("ensure", _pp_quote("file")),
+ ("source", _pp_quote(f.get("source") or "")),
+ ("owner", _pp_quote(f.get("owner") or "root")),
+ ("group", _pp_quote(f.get("group") or "root")),
+ ("mode", _pp_quote(f.get("mode") or "0644")),
+ ],
+ )
+
+ for path, lnk in sorted(prole.links.items()):
+ _resource(
+ lines,
+ "file",
+ path,
+ [
+ ("ensure", _pp_quote("link")),
+ ("target", _pp_quote(lnk.get("target") or "")),
+ ],
+ )
+
+ for svc in [prole.services[k] for k in sorted(prole.services)]:
+ _resource(
+ lines,
+ "service",
+ svc["name"],
+ [
+ ("ensure", _pp_quote(svc["ensure"])),
+ ("enable", _pp_bool(bool(svc["enable"]))),
+ ],
+ )
+
+ if has_sysctl_conf:
+ lines.append(" if $sysctl_apply {")
+ lines.append(" exec { 'enroll-apply-sysctl':")
+ lines.append(" command => $sysctl_ignore_apply_errors ? {")
+ lines.append(
+ " true => \"/bin/sh -c 'sysctl -e -p /etc/sysctl.d/99-enroll.conf || true'\","
+ )
+ lines.append(" default => 'sysctl -e -p /etc/sysctl.d/99-enroll.conf',")
+ lines.append(" },")
+ lines.append(" path => ['/sbin', '/usr/sbin', '/bin', '/usr/bin'],")
+ lines.append(" refreshonly => true,")
+ lines.append(" subscribe => File['/etc/sysctl.d/99-enroll.conf'],")
+ lines.append(" }")
+ lines.append(" }")
+ lines.append("")
+
+ if prole.notes:
+ lines.append(" # Notes and limitations")
+ for note in prole.notes:
+ lines.append(f" # - {note}")
+ lines.append("")
+
+ lines.append("}")
+ lines.append("")
+ return "\n".join(lines)
+
+
+def _render_site_pp(puppet_roles: List[_PuppetRole], fqdn: Optional[str]) -> str:
+ node_name = _pp_quote(fqdn) if fqdn else "default"
+ if not puppet_roles:
+ return f"node {node_name} {{\n # No Puppet classes were generated from this harvest.\n}}\n"
+ includes = "\n".join(f" include {r.module_name}" for r in puppet_roles)
+ return f"node {node_name} {{\n{includes}\n}}\n"
+
+
+def _write_metadata(module_dir: Path, module_name: str) -> None:
+ (module_dir / "metadata.json").write_text(
+ json.dumps(
+ {
+ "name": f"enroll-{module_name}",
+ "version": "0.1.0",
+ "author": "Enroll",
+ "summary": f"Generated Enroll Puppet module for {module_name}",
+ "license": "UNLICENSED",
+ "source": "",
+ "dependencies": [],
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ + "\n",
+ encoding="utf-8",
+ )
+
+
+def _render_readme(state: Dict[str, Any], puppet_roles: List[_PuppetRole]) -> str:
+ host = state.get("host", {}) if isinstance(state.get("host"), dict) else {}
+ hostname = host.get("hostname") or "unknown"
+ role_lines = (
+ "\n".join(
+ f"- `{r.module_name}` from Enroll role `{r.role_name}`"
+ for r in puppet_roles
+ )
+ or "- None."
+ )
+ notes: List[str] = []
+ for r in puppet_roles:
+ for note in r.notes:
+ notes.append(f"`{r.module_name}`: {note}")
+ notes_text = "\n".join(f"- {n}" for n in notes) or "- None."
+ return f"""# Enroll Puppet manifest
+
+Generated by Enroll from harvest data for `{hostname}`.
+
+This Puppet target reuses the existing harvest state without changing harvesting behaviour.
+
+## Layout
+
+- `manifests/site.pp` declares a `node` block and includes the generated classes in manifest order.
+- `modules//manifests/init.pp` contains resources for each generated Enroll role/snapshot or common package group.
+- `modules//files/` contains harvested file artifacts for that role or group.
+- Generated module names avoid Puppet reserved words such as `default`.
+
+## Generated modules
+
+{role_lines}
+
+## Apply / check
+
+Run from this generated output directory so Puppet can find `./modules`, or pass an absolute module path:
+
+```bash
+sudo puppet apply --modulepath ./modules manifests/site.pp --noop
+```
+
+```bash
+sudo puppet apply --modulepath /path/to/generated/modules /path/to/generated/manifests/site.pp --noop
+```
+
+## Generated resources
+
+- Native packages observed in package and service snapshots.
+- Local users and groups from the users snapshot.
+- Managed directories, files, and symlinks from harvested roles.
+- Basic service enablement/running-state resources.
+- `/etc/sysctl.d/99-enroll.conf` plus a refresh-only sysctl apply exec when present.
+
+## Current limitations
+
+- Flatpak, Snap, and live firewall runtime snapshots are listed as notes when present rather than rendered as Puppet resources.
+- JinjaTurtle templating is Ansible-oriented and is not applied to Puppet output.
+- Review generated resources before applying them broadly across unlike hosts.
+
+## Notes
+
+{notes_text}
+"""
+
+
+def manifest_puppet_from_bundle_dir(
+ bundle_dir: str,
+ out_dir: str,
+ *,
+ fqdn: Optional[str] = None,
+ no_common_roles: bool = False,
+) -> None:
+ """Render Puppet modules/site.pp from a harvest bundle."""
+
+ state = _load_state(bundle_dir)
+ out = Path(out_dir)
+ if out.exists():
+ shutil.rmtree(out)
+ manifests_dir = out / "manifests"
+ modules_dir = out / "modules"
+ manifests_dir.mkdir(parents=True, exist_ok=True)
+ modules_dir.mkdir(parents=True, exist_ok=True)
+
+ puppet_roles = _collect_puppet_roles(
+ state,
+ bundle_dir,
+ modules_dir,
+ fqdn=fqdn,
+ no_common_roles=no_common_roles,
+ )
+ for prole in puppet_roles:
+ module_dir = modules_dir / prole.module_name
+ module_manifests = module_dir / "manifests"
+ module_files = module_dir / "files"
+ module_manifests.mkdir(parents=True, exist_ok=True)
+ module_files.mkdir(parents=True, exist_ok=True)
+ (module_manifests / "init.pp").write_text(
+ _render_role_class(prole), encoding="utf-8"
+ )
+ _write_metadata(module_dir, prole.module_name)
+
+ (manifests_dir / "site.pp").write_text(
+ _render_site_pp(puppet_roles, fqdn), encoding="utf-8"
+ )
+ (out / "README.md").write_text(
+ _render_readme(state, puppet_roles), encoding="utf-8"
+ )
diff --git a/tests/test_cli.py b/tests/test_cli.py
index 6a89c58..ed3ffe6 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -48,6 +48,7 @@ def test_cli_manifest_subcommand_calls_manifest(monkeypatch, tmp_path):
called["fqdn"] = kwargs.get("fqdn")
called["jinjaturtle"] = kwargs.get("jinjaturtle")
called["no_common_roles"] = kwargs.get("no_common_roles")
+ called["target"] = kwargs.get("target")
monkeypatch.setattr(cli, "manifest", fake_manifest)
monkeypatch.setattr(
@@ -69,6 +70,37 @@ def test_cli_manifest_subcommand_calls_manifest(monkeypatch, tmp_path):
assert called["fqdn"] is None
assert called["jinjaturtle"] == "auto"
assert called["no_common_roles"] is False
+ assert called["target"] == "ansible"
+
+
+def test_cli_manifest_target_puppet_is_forwarded(monkeypatch, tmp_path):
+ called = {}
+
+ def fake_manifest(harvest_dir: str, out_dir: str, **kwargs):
+ called["harvest"] = harvest_dir
+ called["out"] = out_dir
+ called["target"] = kwargs.get("target")
+
+ monkeypatch.setattr(cli, "manifest", fake_manifest)
+ monkeypatch.setattr(
+ sys,
+ "argv",
+ [
+ "enroll",
+ "manifest",
+ "--harvest",
+ str(tmp_path / "bundle"),
+ "--out",
+ str(tmp_path / "puppet"),
+ "--target",
+ "puppet",
+ ],
+ )
+
+ cli.main()
+ assert called["harvest"] == str(tmp_path / "bundle")
+ assert called["out"] == str(tmp_path / "puppet")
+ assert called["target"] == "puppet"
def test_cli_manifest_no_common_roles_is_forwarded(monkeypatch, tmp_path):
diff --git a/tests/test_manifest_puppet.py b/tests/test_manifest_puppet.py
new file mode 100644
index 0000000..699b2b3
--- /dev/null
+++ b/tests/test_manifest_puppet.py
@@ -0,0 +1,431 @@
+from __future__ import annotations
+
+import json
+from pathlib import Path
+
+from enroll import manifest
+
+
+def _write_state(bundle: Path, state: dict) -> None:
+ bundle.mkdir(parents=True, exist_ok=True)
+ (bundle / "state.json").write_text(json.dumps(state, indent=2), encoding="utf-8")
+
+
+def test_manifest_puppet_writes_control_repo_style_output(tmp_path: Path):
+ bundle = tmp_path / "bundle"
+ out = tmp_path / "puppet"
+ artifact = bundle / "artifacts" / "foo" / "etc" / "foo.conf"
+ artifact.parent.mkdir(parents=True, exist_ok=True)
+ artifact.write_text("setting = true\n", encoding="utf-8")
+ sysctl_artifact = bundle / "artifacts" / "sysctl" / "sysctl" / "99-enroll.conf"
+ sysctl_artifact.parent.mkdir(parents=True, exist_ok=True)
+ sysctl_artifact.write_text("net.ipv4.ip_forward = 1\n", encoding="utf-8")
+
+ state = {
+ "schema_version": 3,
+ "host": {"hostname": "test", "os": "debian", "pkg_backend": "dpkg"},
+ "inventory": {"packages": {}},
+ "roles": {
+ "users": {
+ "role_name": "users",
+ "users": [
+ {
+ "name": "alice",
+ "uid": 1000,
+ "gid": 1000,
+ "gecos": "Alice Example",
+ "home": "/home/alice",
+ "shell": "/bin/bash",
+ "primary_group": "alice",
+ "supplementary_groups": ["docker"],
+ }
+ ],
+ "managed_dirs": [],
+ "managed_files": [],
+ "excluded": [],
+ "notes": [],
+ },
+ "services": [
+ {
+ "unit": "foo.service",
+ "role_name": "foo",
+ "packages": ["foo"],
+ "active_state": "active",
+ "sub_state": "running",
+ "unit_file_state": "enabled",
+ "condition_result": "yes",
+ "managed_dirs": [
+ {
+ "path": "/etc/foo",
+ "owner": "root",
+ "group": "root",
+ "mode": "0755",
+ "reason": "parent_dir",
+ }
+ ],
+ "managed_files": [
+ {
+ "path": "/etc/foo/foo.conf",
+ "src_rel": "etc/foo.conf",
+ "owner": "root",
+ "group": "root",
+ "mode": "0644",
+ "reason": "modified_conffile",
+ }
+ ],
+ "managed_links": [],
+ "excluded": [],
+ "notes": [],
+ }
+ ],
+ "packages": [
+ {
+ "package": "curl",
+ "role_name": "curl",
+ "section": "net",
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ "excluded": [],
+ "notes": [],
+ }
+ ],
+ "apt_config": {
+ "role_name": "apt_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ "excluded": [],
+ "notes": [],
+ },
+ "dnf_config": {
+ "role_name": "dnf_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ "excluded": [],
+ "notes": [],
+ },
+ "sysctl": {
+ "role_name": "sysctl",
+ "managed_dirs": [],
+ "managed_files": [
+ {
+ "path": "/etc/sysctl.d/99-enroll.conf",
+ "src_rel": "sysctl/99-enroll.conf",
+ "owner": "root",
+ "group": "root",
+ "mode": "0644",
+ "reason": "system_sysctl",
+ }
+ ],
+ "parameters": {"net.ipv4.ip_forward": "1"},
+ "notes": [],
+ },
+ "firewall_runtime": {
+ "role_name": "firewall_runtime",
+ "packages": [],
+ "ipset_save": None,
+ "ipset_sets": [],
+ "iptables_v4_save": None,
+ "iptables_v6_save": None,
+ "notes": [],
+ },
+ "etc_custom": {
+ "role_name": "etc_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ "excluded": [],
+ "notes": [],
+ },
+ "usr_local_custom": {
+ "role_name": "usr_local_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ "excluded": [],
+ "notes": [],
+ },
+ "extra_paths": {
+ "role_name": "extra_paths",
+ "include_patterns": [],
+ "exclude_patterns": [],
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ "excluded": [],
+ "notes": [],
+ },
+ },
+ }
+ _write_state(bundle, state)
+
+ manifest.manifest(str(bundle), str(out), target="puppet", fqdn="test.example")
+
+ site_pp = (out / "manifests" / "site.pp").read_text(encoding="utf-8")
+ assert site_pp == (
+ "node 'test.example' {\n"
+ " include curl\n"
+ " include foo\n"
+ " include users\n"
+ " include sysctl\n"
+ "}\n"
+ )
+
+ curl_pp = (out / "modules" / "curl" / "manifests" / "init.pp").read_text(
+ encoding="utf-8"
+ )
+ assert "class curl" in curl_pp
+ assert "package { 'curl':" in curl_pp
+
+ foo_pp = (out / "modules" / "foo" / "manifests" / "init.pp").read_text(
+ encoding="utf-8"
+ )
+ assert "class foo" in foo_pp
+ assert "package { 'foo':" in foo_pp
+ assert "file { '/etc/foo/foo.conf':" in foo_pp
+ assert "source => 'puppet:///modules/foo/etc/foo.conf'" in foo_pp
+ assert "service { 'foo.service':" in foo_pp
+
+ users_pp = (out / "modules" / "users" / "manifests" / "init.pp").read_text(
+ encoding="utf-8"
+ )
+ assert "class users" in users_pp
+ assert "group { 'docker':" in users_pp
+ assert "user { 'alice':" in users_pp
+
+ sysctl_pp = (out / "modules" / "sysctl" / "manifests" / "init.pp").read_text(
+ encoding="utf-8"
+ )
+ assert "class sysctl" in sysctl_pp
+ assert "Boolean $sysctl_apply = true" in sysctl_pp
+ assert "Boolean $sysctl_ignore_apply_errors = true" in sysctl_pp
+ assert "exec { 'enroll-apply-sysctl':" in sysctl_pp
+ assert "command => $sysctl_ignore_apply_errors ? {" in sysctl_pp
+ assert "sysctl -e -p /etc/sysctl.d/99-enroll.conf || true" in sysctl_pp
+
+ assert (out / "modules" / "foo" / "files" / "etc" / "foo.conf").exists()
+ assert (out / "modules" / "sysctl" / "files" / "sysctl" / "99-enroll.conf").exists()
+
+
+def test_manifest_puppet_uses_default_node_and_common_package_modules(tmp_path: Path):
+ bundle = tmp_path / "bundle"
+ out = tmp_path / "puppet"
+ artifact = bundle / "artifacts" / "foo" / "etc" / "foo.conf"
+ artifact.parent.mkdir(parents=True, exist_ok=True)
+ artifact.write_text("setting = true\n", encoding="utf-8")
+
+ state = {
+ "schema_version": 3,
+ "host": {"hostname": "test", "os": "debian", "pkg_backend": "dpkg"},
+ "inventory": {
+ "packages": {
+ "curl": {"section": "net"},
+ "foo": {"installations": [{"section": "net"}]},
+ }
+ },
+ "roles": {
+ "services": [
+ {
+ "unit": "foo.service",
+ "role_name": "foo",
+ "packages": ["foo"],
+ "active_state": "active",
+ "unit_file_state": "enabled",
+ "managed_dirs": [],
+ "managed_files": [
+ {
+ "path": "/etc/foo/foo.conf",
+ "src_rel": "etc/foo.conf",
+ "owner": "root",
+ "group": "root",
+ "mode": "0644",
+ }
+ ],
+ "managed_links": [],
+ }
+ ],
+ "packages": [
+ {
+ "package": "curl",
+ "role_name": "curl",
+ "section": "net",
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ }
+ ],
+ "users": {
+ "role_name": "users",
+ "users": [],
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "apt_config": {
+ "role_name": "apt_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "dnf_config": {
+ "role_name": "dnf_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "sysctl": {"role_name": "sysctl", "managed_dirs": [], "managed_files": []},
+ "firewall_runtime": {"role_name": "firewall_runtime", "packages": []},
+ "etc_custom": {
+ "role_name": "etc_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "usr_local_custom": {
+ "role_name": "usr_local_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "extra_paths": {
+ "role_name": "extra_paths",
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ },
+ },
+ }
+ _write_state(bundle, state)
+
+ manifest.manifest(str(bundle), str(out), target="puppet")
+
+ site_pp = (out / "manifests" / "site.pp").read_text(encoding="utf-8")
+ assert site_pp == "node default {\n include net\n}\n"
+
+ net_pp = (out / "modules" / "net" / "manifests" / "init.pp").read_text(
+ encoding="utf-8"
+ )
+ assert "class net" in net_pp
+ assert "package { 'curl':" in net_pp
+ assert "package { 'foo':" in net_pp
+ assert "file { '/etc/foo/foo.conf':" in net_pp
+ assert "source => 'puppet:///modules/net/etc/foo.conf'" in net_pp
+ assert "service { 'foo.service':" in net_pp
+ assert (out / "modules" / "net" / "files" / "etc" / "foo.conf").exists()
+ assert not (out / "modules" / "curl").exists()
+ assert not (out / "modules" / "foo").exists()
+
+
+def test_manifest_puppet_avoids_reserved_module_names_and_duplicate_resources(
+ tmp_path: Path,
+):
+ bundle = tmp_path / "bundle"
+ out = tmp_path / "puppet"
+ state = {
+ "schema_version": 3,
+ "host": {"hostname": "test", "os": "debian", "pkg_backend": "dpkg"},
+ "inventory": {
+ "packages": {
+ "alpha": {"section": "admin"},
+ "beta": {"section": "misc"},
+ "gamma": {"section": "default"},
+ }
+ },
+ "roles": {
+ "packages": [
+ {
+ "package": "alpha",
+ "role_name": "alpha",
+ "section": "admin",
+ "managed_dirs": [
+ {
+ "path": "/etc/default",
+ "owner": "root",
+ "group": "root",
+ "mode": "0755",
+ }
+ ],
+ "managed_files": [],
+ "managed_links": [],
+ },
+ {
+ "package": "beta",
+ "role_name": "beta",
+ "section": "misc",
+ "managed_dirs": [
+ {
+ "path": "/etc/default",
+ "owner": "root",
+ "group": "root",
+ "mode": "0755",
+ }
+ ],
+ "managed_files": [],
+ "managed_links": [],
+ },
+ {
+ "package": "gamma",
+ "role_name": "gamma",
+ "section": "default",
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ },
+ ],
+ "users": {
+ "role_name": "users",
+ "users": [],
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "apt_config": {
+ "role_name": "apt_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "dnf_config": {
+ "role_name": "dnf_config",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "sysctl": {"role_name": "sysctl", "managed_dirs": [], "managed_files": []},
+ "firewall_runtime": {"role_name": "firewall_runtime", "packages": []},
+ "etc_custom": {
+ "role_name": "etc_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "usr_local_custom": {
+ "role_name": "usr_local_custom",
+ "managed_dirs": [],
+ "managed_files": [],
+ },
+ "extra_paths": {
+ "role_name": "extra_paths",
+ "managed_dirs": [],
+ "managed_files": [],
+ "managed_links": [],
+ },
+ },
+ }
+ _write_state(bundle, state)
+
+ manifest.manifest(str(bundle), str(out), target="puppet")
+
+ site_pp = (out / "manifests" / "site.pp").read_text(encoding="utf-8")
+ assert "include default\n" not in site_pp
+ assert "include package_group_default" in site_pp
+ assert (
+ out / "modules" / "package_group_default" / "manifests" / "init.pp"
+ ).exists()
+
+ init_pps = "\n".join(
+ p.read_text(encoding="utf-8")
+ for p in sorted((out / "modules").glob("*/manifests/init.pp"))
+ )
+ assert init_pps.count("file { '/etc/default':") == 1
+
+
+def test_manifest_rejects_unknown_target(tmp_path: Path):
+ bundle = tmp_path / "bundle"
+ _write_state(bundle, {"roles": {}})
+
+ try:
+ manifest.manifest(str(bundle), str(tmp_path / "out"), target="chef")
+ except ValueError as e:
+ assert "unsupported manifest target" in str(e)
+ else:
+ raise AssertionError("expected ValueError")