slitaz-base-files diff rootfs/etc/slitaz/slitaz.conf @ rev 127

Add new slitaz.conf (more logical name, less tazpkg specifique vars, clean comments PLEASE adapte you scripts
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 12 22:23:20 2012 +0200 (2012-04-12)
parents
children 617a18197606
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rootfs/etc/slitaz/slitaz.conf	Thu Apr 12 22:23:20 2012 +0200
     1.3 @@ -0,0 +1,54 @@
     1.4 +# /etc/slitaz/slitaz.conf: SliTaz variables used by almost all tools.
     1.5 +#
     1.6 +
     1.7 +# Slitaz release.
     1.8 +SLITAZ_RELEASE="$(cat /etc/slitaz-release)"
     1.9 +
    1.10 +# Slitaz directory.
    1.11 +SLITAZ_HOME="/home/slitaz"
    1.12 +
    1.13 +# Slitaz directory.
    1.14 +SLITAZ_CONFIGS="/etc/slitaz"
    1.15 +
    1.16 +# Slitaz logs directory.
    1.17 +SLITAZ_LOGS="/var/log/slitaz"
    1.18 +
    1.19 +# Path to each version.
    1.20 +STABLE="$SLITAZ_DIR/stable"
    1.21 +COOKING="$SLITAZ_DIR/cooking"
    1.22 +UNDIGEST="$SLITAZ_DIR/undigest"
    1.23 +
    1.24 +# The type of checksum and ext for packages.md5-like file
    1.25 +# md5sum : default (but weak) [sha1sum|sha256sum|sha512sum]
    1.26 +CHECKSUM="md5sum"
    1.27 +SUM="${CHECKSUM/sum}"
    1.28 +
    1.29 +# Main mirror URL.
    1.30 +MIRROR_URL="http://mirror.slitaz.org"
    1.31 +
    1.32 +# Online and local packages repository.
    1.33 +ONLINE_PKGS="$MIRROR_URL/packages/$SLITAZ_VERSION/"
    1.34 +LOCAL_PKGS="$SLITAZ_HOME/packages/$SLITAZ_VERSION/"
    1.35 +
    1.36 +# Path to Tazpkg data.
    1.37 +LOCALSTATE="/var/lib/tazpkg"
    1.38 +
    1.39 +# Path to installed packages data.
    1.40 +INSTALLED="$LOCALSTATE/installed"
    1.41 +
    1.42 +# Packages categories.
    1.43 +PKGS_CATEGORIES="
    1.44 +base-system
    1.45 +x-window
    1.46 +utilities
    1.47 +network
    1.48 +graphics
    1.49 +multimedia
    1.50 +office
    1.51 +development
    1.52 +system-tools
    1.53 +security
    1.54 +games
    1.55 +misc
    1.56 +meta
    1.57 +non-free"