# HG changeset patch # User Binki # Date 2009-04-08 18:53:58 # Node ID b98974c4ed7f8e71e5abebd5e4b1440a1f30f38c # Parent 34d3e7887adbb32f4e090a553f93fc54372674bb added an example conf file diff --git a/Makefile.am b/Makefile.am --- a/Makefile.am +++ b/Makefile.am @@ -1,1 +1,1 @@ -SUBDIRS = src +SUBDIRS = src etc diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac @@ -43,6 +43,7 @@ src/common/Makefile src/server/Makefile src/client/Makefile src/tests/Makefile +etc/Makefile ]) AC_OUTPUT diff --git a/etc/Makefile.am b/etc/Makefile.am new file mode 100644 --- /dev/null +++ b/etc/Makefile.am @@ -0,0 +1,1 @@ +sysconf_DATA = distren.conf diff --git a/etc/distren.conf b/etc/distren.conf new file mode 100644 --- /dev/null +++ b/etc/distren.conf @@ -0,0 +1,24 @@ +/* + Configuration file for distren. + Currently, this file is being prepared as the goal for this project. For instance, the ability to support connecting and communicating with servers is suggested by the server sections. +*/ + +server protofusion +{ + hostname = "protofusion.org" + username = "distrenc" + /* method's use is not implemented, ssh is the only option atm */ + method = "ssh" +} + +server ohnopublishing +{ + hostname = "ohnopublishing.net" + username = "distrenc" + method = "ssh" +} + +client +{ + render_types = {"povray", "blender", "inkscape", "imagemagick", "dcraw"} +}