Product: Func - Fedora Unified Network Controller
Post from www.newsgator.com“>NewsGator.com iPhone:
Product: Func - Fedora Unified Network Controller
Func is used to manage a large network using bash or Python scripts. It targets easy and simple remote scripting and one-off tasks over SSH by creating a secure (SSL certifications) XMLRPC API for communication. Any kind of application can be written on top of it. Other configuration management tools specialize in mass configuration. They say here’s what the machine should look like and keep it that way. Func allows you to program your cluster. If you’ve ever tried to securely remote script a gang of machines using SSH keys you know what a total nightmare that can be.
Some example commands:
Using the command line:func "*.example.org" call yumcmd updateUsing the Pthon API:import func.overlord.client as fcclient = fc.Client("*.example.org;*.example.com")client.yumcmd.update()client.service.start("acme-server")print client.hardware.info()Func may certainly overlap in functionality with other tools like Puppet and cfengine, but as programmers we always need more than one way to do it and definitely see how I could have used Func on a few projects.
Posted by email from Notez (posterous) | Comment »
3 years ago