TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

2 点作者 jaxtracks3 个月前
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 个月前
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 未加载