c++ - API or library for server-client configuration management -


in software project working in, have management server , hundreds of clients. management server define policies , send clients(or clients take that). think, structure group policy. there api or useful c++ program.

i came across netconf named thing haven't succeed run it. considering write configuration management system rpc protocol, if can't find useful don't know if easy implement c++.

or think can use web service update clients configuration files.

by way not sure call thing "configuration manager" or not.

let's consider case if config files huge. if have file list of users , added new 1 not want copy whole file boxes in cluster. main reason why had use version control system such configs management program.

to implement it's enough setup 1 of popular vcs (i used mercurial), put configs repository , clone on client's boxes. if need update configs pushing change vcs , execute following each client/host

ssh -q user@host "cd $vcs_root && hg pull -u" 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -