]> git.ipfire.org Git - ipfire-2.x.git/blob - src/pakfire/pakfire.conf
7c59ae79828ae7fd0bbfa37bbd12a29fdabda94d
[ipfire-2.x.git] / src / pakfire / pakfire.conf
1 ############################################################################################
2 # Version 0.1a, Copyright (C) 2006 Peter Schaelchli Für IPFire besteht KEINERLEI GARANTIE;#
3 # IPFire ist freie Software, die Sie unter bestimmten Bedingungen weitergeben dürfen; #
4 ############################################################################################
5
6 PAKVER=2.0beta
7
8 # Home Verzeichnis von Pakman
9 PAKHOME=/opt/pakfire
10
11 SERVERS_LIST=servers.list_$PAKVER
12 PACKAGE_LIST=packages_list.txt
13
14 # Haupt-Mirrorliste
15 H_MIRROR=http://download.ipfire.eu/servers/$SERVERS_LIST
16
17 # URL Mirrorfile
18 PURL=`cat /opt/pakfire/cache/$SERVERS_LIST`
19
20 # LOG_file
21 LOG=/var/log/pakfire.log
22
23 # Datenbank
24 DB_DIR=/opt/pakfire/database
25
26 # Update Verzeichnis
27 UP_DIR=/opt/pakfire/updates/
28
29 # temp directory
30 TMP_DIR=$PAKHOME/tmp
31
32 # Verzeichnis mit Installierten Paketen
33 IP_DIR=/opt/pakfire/installed/
34
35 # Download Zielverzeichnis
36 DOWN_DEST=/opt/pakfire/download/
37
38 # URL Zerlegungs- Script
39 URL_ZERL=/opt/pakfire/url_zerl.sh
40
41 # Host Tester
42 HOST_TEST=$PAKHOME/lib/test_host.sh
43
44 # Paket Filenamen festlegen
45 # Das eigentliche Paket
46 PAK_PROG=prog.tar.gz
47 # Abhängigkeits Liste
48 PAK_ABH=abh.txt
49 # Installer Script
50 PAK_INST=install.sh
51 # Uninstaller Script
52 PAK_UNINST=uninstall.sh
53
54 # Cacheverzeichnis
55 CACHE_DIR=/opt/pakfire/cache/
56
57 pakfire_logger() {
58
59 echo "`date -u '+%b %e %T'` $*" | tee -a $LOG
60
61 }