TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: A configuration management system for minimal *Nix environments

2 pointsby jaxtracks3 months ago
I built this thing to scratch my itch for a simpler alternative to Ansible and similar for basic jobs like setting up a dev env, building containers, and provisioning small fleets of servers.<p>Grateful for feedback on the approach! A couple of friends and I have found it useful for day-to-day automation tasks and I&#x27;m wondering if there&#x27;s enough utility in its ability to target minimal environments like Alpine containers or IoT devices to warrant fleshing out a proper 1.0 release.

1 comment

theamk3 months ago
If going for minimalism, why have any framework&#x2F;runner at all? Use the raw bash scripts.<p><pre><code> if [ ! -f &#x2F;tmp&#x2F;foo ]; then $maybe_dryrun touch &#x2F;tmp&#x2F;foo; fi </code></pre> There will be a bit of boilerplate, but it would be much easier to understand and debug.<p>(I&#x27;d say different things for a more complex system which can, for example, track the files created and show if any of them were unexpectedly modified. But your system does not seem to implement any of it, it&#x27;s just a overcomplicated shell runner)
评论 #42978904 未加载