slitaz-dev-tools diff libtaz/slitaz.conf @ rev 28

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sat Mar 05 18:19:18 2011 +0000 (2011-03-05)
parents
children 5de4cfa5296c
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libtaz/slitaz.conf	Sat Mar 05 18:19:18 2011 +0000
     1.3 @@ -0,0 +1,91 @@
     1.4 +########################################################################
     1.5 +# This is the generic SliTaz configuration file used by libtaz to get
     1.6 +# the defaults options and directories.
     1.7 +#
     1.8 +# Theses variables can be overwritted by a lower level of configuration.
     1.9 +# Order for loading variables (the latest definition is keeped) :
    1.10 +# slitaz.conf (then) main app.conf (or) local app.conf
    1.11 +# (or) *.conf of the command line (then) arguments of the command line
    1.12 +#
    1.13 +# ** Alpha Comment by GoKhlaYeh: **
    1.14 +# With libtaz, I plan to change the default location of some important
    1.15 +# directories to fit the server hierarchy. In a general view I want
    1.16 +# to make the organisation on server and on released system similar.
    1.17 +# The goal is having tools working out-of-the-box in both cases to make
    1.18 +# the contributor work more easy and efficient.
    1.19 +# Theses changes will takes place with Release Candidate, when libtaz
    1.20 +# implementation in all SliTaz tools will be finish, and all code fully
    1.21 +# reviewed. Hope everybody agree with that ;).
    1.22 +#
    1.23 +
    1.24 +########################################################################
    1.25 +# COMMON DIRECTORIES
    1.26 +########################
    1.27 +
    1.28 +# Slitaz logs directory.
    1.29 +SLITAZ_LOG="/var/log/slitaz"
    1.30 +
    1.31 +# Slitaz version.
    1.32 +SLITAZ_VERSION="$(cat /etc/slitaz-release)"
    1.33 +
    1.34 +# Slitaz directory.
    1.35 +SLITAZ_DIR="/home/slitaz"
    1.36 +
    1.37 +# Local repository for current version (can contains local packages 
    1.38 +# repository, wok, sources, ...).
    1.39 +LOCAL_REPOSITORY="$SLITAZ_DIR/$SLITAZ_VERSION"
    1.40 +
    1.41 +# Online packages repository.
    1.42 +ONLINE_REPOSITORY="http://mirror.slitaz.org/packages/$SLITAZ_VERSION/"
    1.43 +
    1.44 +# Packages cache directory.
    1.45 +CACHE_DIR="/var/cache/tazpkg"
    1.46 +
    1.47 +# Path to repository datas.
    1.48 +LOCALSTATE="/var/lib/tazpkg"
    1.49 +
    1.50 +# Path to installations datas.
    1.51 +INSTALLED="$LOCALSTATE/installed"
    1.52 +
    1.53 +########################################################################
    1.54 +# COMMON VARIABLES
    1.55 +########################
    1.56 +
    1.57 +# Packages categories.
    1.58 +CATEGORIES="
    1.59 +base-system
    1.60 +x-window
    1.61 +utilities
    1.62 +network
    1.63 +graphics
    1.64 +multimedia
    1.65 +office
    1.66 +development
    1.67 +system-tools
    1.68 +security
    1.69 +games
    1.70 +misc
    1.71 +meta
    1.72 +non-free"
    1.73 +
    1.74 +
    1.75 +########################################################################
    1.76 +# LIBTAZ OPTIONS
    1.77 +########################
    1.78 +# Theses options are the default setting for all SliTaz tools which use
    1.79 +# libtaz. They are :
    1.80 +#   * tazwok
    1.81 +#   * tazpkg
    1.82 +
    1.83 +# If this option is enabled, automaticaly install needed packages. It
    1.84 +# can be depends, build_depends, or package needed to perform a specific
    1.85 +# task.
    1.86 +# Value can be :
    1.87 +#   * yes = enabled
    1.88 +#   * anything else = disabled
    1.89 +auto_install=yes
    1.90 +
    1.91 +# If you want to log all operations (into /var/log/slitaz),
    1.92 +# uncomment the following line
    1.93 +# Note: important operations are logged by default.
    1.94 +#report_log_all=yes
    1.95 \ No newline at end of file