Browse Source

* added initial target structure for tardiba

git-svn-id: svn+ssh://svn.opensde.net/home/users/karasz/x5/tardiba/trunk@11 471cc25b-571d-0410-8e29-1f4f9b506cef
master
Christian Wiese 18 years ago
parent
commit
4ae2826a31
16 changed files with 78 additions and 0 deletions
  1. +23
    -0
      config.in
  2. +1
    -0
      extends
  3. +2
    -0
      inconfig.in
  4. +6
    -0
      pkgsel.in
  5. +0
    -0
      pkgsel/00-tardiba.all
  6. +1
    -0
      pkgsel/10-SYSTEM.modern.choice
  7. +2
    -0
      pkgsel/11-SYSTEM.normal.choice
  8. +1
    -0
      pkgsel/12-SYSTEM.old.choice
  9. +2
    -0
      pkgsel/60-network.ask
  10. +2
    -0
      pkgsel/80-ldap.ask
  11. +7
    -0
      pkgsel/ldap-no.conf
  12. +7
    -0
      pkgsel/ldap.conf
  13. +7
    -0
      pkgsel/network-no.conf
  14. +7
    -0
      pkgsel/network.conf
  15. +9
    -0
      pkgsel/tardiba.conf
  16. +1
    -0
      version.txt

+ 23
- 0
config.in

@ -0,0 +1,23 @@
#Description: Tardiba - The Tazmanian Devil Database Server
const SDECFG_TRG_TARDIBA ${target:-$SDECFG_TARGET}
if [ ! -s $cfgtmpdir/tardiba.config.in ]; then
SDECFG_TRG_MNEMOSYNE=$( cat ./target/$SDECFG_TRG_TARDIBA/extends )
if ! perl ./target/$SDECFG_TRG_MNEMOSYNE/mnemosyne.pl "./target/$SDECFG_TRG_TARDIBA/pkgsel" TRG_TARDIBA \
$cfgtmpdir/tardiba.{config,rules,awkgen}.in; then
echo "mnemosyne.pl failed!"
rm -f $cfgtmpdir/tardiba.{config,rules,awkgen}.in
fi
fi
if [ -s $cfgtmpdir/tardiba.config.in ]; then
. $cfgtmpdir/tardiba.rules.in
. $cfgtmpdir/tardiba.config.in
else
comment ' '
comment 'ERROR: plugins config was not rendered!'
fi
comment ' '
menu_begin MENU_MNEMOSYNE 'Advanced Options'

+ 1
- 0
extends

@ -0,0 +1 @@
mnemosyne

+ 2
- 0
inconfig.in

@ -0,0 +1,2 @@
menu_end

+ 6
- 0
pkgsel.in

@ -0,0 +1,6 @@
if [ -s $cfgtmpdir/tardiba.awkgen.in ]; then
. $cfgtmpdir/tardiba.awkgen.in \
> $cfgtmpdir/tardiba.pkgsel.awk
pkgfilter awk -f $cfgtmpdir/tardiba.pkgsel.awk
fi

+ 0
- 0
pkgsel/00-tardiba.all


+ 1
- 0
pkgsel/10-SYSTEM.modern.choice

@ -0,0 +1 @@
#Description: Modern Computer

+ 2
- 0
pkgsel/11-SYSTEM.normal.choice

@ -0,0 +1,2 @@
#Description: Normal Computer
#Default: normal

+ 1
- 0
pkgsel/12-SYSTEM.old.choice

@ -0,0 +1 @@
#Description: Old Computer

+ 2
- 0
pkgsel/60-network.ask

@ -0,0 +1,2 @@
#Description: Network Support
#Default: 1

+ 2
- 0
pkgsel/80-ldap.ask

@ -0,0 +1,2 @@
#Description: LDAP Support
#Dependencies: NETWORK

+ 7
- 0
pkgsel/ldap-no.conf

@ -0,0 +1,7 @@
for x in LDAP=0 LDAPAUTH=0 \
; do
eval SDECFGSET_TRG_MNEMOSYNE_$x
const SDECFG_TRG_MNEMOSYNE_${x/=/ }
done

+ 7
- 0
pkgsel/ldap.conf

@ -0,0 +1,7 @@
for x in LDAP=1 LDAPAUTH=1 \
; do
eval SDECFGSET_TRG_MNEMOSYNE_$x
const SDECFG_TRG_MNEMOSYNE_${x/=/ }
done

+ 7
- 0
pkgsel/network-no.conf

@ -0,0 +1,7 @@
for x in NETWORK=0 \
; do
eval SDECFGSET_TRG_MNEMOSYNE_$x
const SDECFG_TRG_MNEMOSYNE_${x/=/ }
done

+ 7
- 0
pkgsel/network.conf

@ -0,0 +1,7 @@
for x in NETWORK=1 DHCP=udhcp PPP=1 SSHD=dropbear \
; do
eval SDECFGSET_TRG_MNEMOSYNE_$x
const SDECFG_TRG_MNEMOSYNE_${x/=/ }
done

+ 9
- 0
pkgsel/tardiba.conf

@ -0,0 +1,9 @@
# options always used on all tardiba systems
#
for x in KERNEL='linux' LIBC=glibc LVM=1 PAM=1 IDS=1 SSP=1 \
SECURITY=none ENCRYPTION=1 PGP=1 DOC=usual \
; do
eval SDECFGSET_TRG_MNEMOSYNE_$x
const SDECFG_TRG_MNEMOSYNE_${x/=/ }
done

+ 1
- 0
version.txt

@ -0,0 +1 @@
Tardiba - The Tazmanian Devil Datavase Server

Loading…
Cancel
Save