Write a remote configuration utility called 'rconfig'. This initial
authorMatthew Dillon <dillon@dragonflybsd.org>
Fri, 18 Jun 2004 02:46:46 +0000 (02:46 +0000)
committerMatthew Dillon <dillon@dragonflybsd.org>
Fri, 18 Jun 2004 02:46:46 +0000 (02:46 +0000)
commit86ed60a6a52aea3ac125db97d2ff4a53bacf5803
treea48222d444c5ee159daaff5d10a6dcef399b2793
parent92ff4ce65c0b45ea6a9025455212ffd9b224aa1c
Write a remote configuration utility called 'rconfig'.  This initial
implementation is very basic and designed to be convienient.  It allows a
CD user to scan the network for configuration servers, download a
configuration script based on a tag name, and execute that script all in
one simple command.  Running the rconfig server is just as easy... you
basically just run the server -a -s and put your scripts in
/usr/local/etc/rconfig/<tagname>.sh and you are done.

Of course the scripts themselves have to be written and can certainly become
quite complex.

In order to use rconfig from a CD Boot at least one network interface must
be properly configured.  The dhclient program is usually used to accomplish
this.
sbin/Makefile
sbin/rconfig/Makefile [new file with mode: 0644]
sbin/rconfig/client.c [new file with mode: 0644]
sbin/rconfig/defs.h [new file with mode: 0644]
sbin/rconfig/rconfig.8 [new file with mode: 0644]
sbin/rconfig/rconfig.c [new file with mode: 0644]
sbin/rconfig/server.c [new file with mode: 0644]
sbin/rconfig/subs.c [new file with mode: 0644]