PDA

View Full Version : Automating custom compiled packages updates



carnaval
October 15th, 2016, 11:51 PM
I read that apt-get can download source packages from source repositories. And that got me wondering if it would be possible to automate custom builds so that every time a package is updated in a repository, the new version can be automatically compiled with the same config options.

If that is something that people already do, can you please point me to how to do it? If not, what are other options that can accomplish the same or similar results?

Thank you in advance.

TheFu
October 18th, 2016, 08:14 PM
We use ansible and don't cross-contaminate those source installed programs with APT installed programs.

carnaval
October 18th, 2016, 10:00 PM
Thank you for responding.

I was hoping for a way to accomplish this task without adding more packages to the system. But will look into ansible.

TheFu
October 18th, 2016, 10:57 PM
You can script whatever you like using whatever language you prefer. Ansible is just a standard way of managing systems. Nothing more. Nothing less.

Ansible is only needed for 1 system, the workstation used to launch the management of 2-20,000 other systems.

carnaval
October 19th, 2016, 11:04 PM
That should make things easy. Will try it out in my test environment. Thank you again.