Make dgl-create-chroot.conf file clearer in the comments.
Add example dgl-create-chroot.conf file. git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@78 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
5a623c9d44
commit
118c4a51a6
|
@ -2,10 +2,12 @@
|
||||||
|
|
||||||
# Original by joshk@triplehelix.org, modifications by jilles@stack.nl
|
# Original by joshk@triplehelix.org, modifications by jilles@stack.nl
|
||||||
|
|
||||||
# settings
|
# Settings
|
||||||
|
# Don't customize here, create a dgl-create-chroot.conf file instead.
|
||||||
|
# The defaults should work fine for Debian.
|
||||||
# path for chroot
|
# path for chroot
|
||||||
chroot_path="/var/lib/dgamelaunch"
|
chroot_path="/var/lib/dgamelaunch"
|
||||||
# uid/gid, must agree with dgamelaunch.h
|
# uid/gid (numeric), must agree with dgamelaunch.h
|
||||||
shed_uid=5
|
shed_uid=5
|
||||||
shed_gid=60
|
shed_gid=60
|
||||||
# extra libraries to copy (that ldd doesn't find, such as ld-elf.so.1 on
|
# extra libraries to copy (that ldd doesn't find, such as ld-elf.so.1 on
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Example configuration, for my FreeBSD 4 machine, using nethack from ports.
|
||||||
|
# This file created by Jilles Tjoelker <jilles@stack.nl>.
|
||||||
|
|
||||||
|
chroot_path="/home/jilles/src/3rdparty/dgamelaunch-chroot-2"
|
||||||
|
shed_uid=1031
|
||||||
|
shed_gid=1031
|
||||||
|
libs="/usr/libexec/ld-elf.so.1"
|
||||||
|
playground_fixed="/usr/local/lib/nethack"
|
||||||
|
playground_var="/usr/local/lib/nethack"
|
||||||
|
nethack_bin="$playground_fixed/nethack"
|
||||||
|
termdata="/usr/share/misc/termcap"
|
Loading…
Reference in New Issue