Teh honest truth is I tryed ansible and puppet and chef and all tehse tools and they all suck for my use casee. I run like 8 small sites on RackNerd and GreenCloudVPS boxes and I just want to know when somethign changed not fix it automaticcaly. My current workflow is diff against git, cry, fix manually. Anyone else doin this or am I just a caveman
What do you use for configuration drift detection?
What is configuration drift exactly? I have two VPS from Vultr and I just ssh in and change things when something breaks, I dont use git at all 😬 should I be worried?
learning on $5 VPS and prayers
Same. Diff against git and cry is my whole workflow too
grabs popcorn, checks /r/drama
sarahjey said:
Should I be worried?
tomhider said:
Diff against git, cry, fix manually
RAM is just fast disk, right?
linux43 said:
Track your changes in git at minimum
learning on $5 VPS and prayers
linux43 said:
Track your changes in git at minimum
I use etckeeper on my Dublin box. It's in the repos, wraps git, auto-commits daily and on apt runs. Not perfect but it solves the "when did this change" problem without the email spam.
SwapJones said:
Notes.txt
grabs popcorn, checks /r/drama
7 VPS across 4 providers and I use Ansible pull with a local git repo. Not for drift detection though, just so I can rebuild fast. For drift I run ansible --check --diff weekly and review the output. It's ugly but it works.