tazwok view libtazwok/libtazwok.conf @ rev 556

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 30 01:54:35 2016 +0300 (2016-03-30)
parents d2993eed3ea5
children
line source
1 ########################################################################
2 # This is the generic SliTaz configuration file used by libtaz to get
3 # the default options and directories.
4 #
5 # These variables can be overwritten by a lower level of configuration.
6 # Order for loading variables (the latest definition is kept) :
7 # slitaz.conf (then) main app.conf (or) local app.conf
8 # (or) *.conf of the command line (then) arguments of the command line
9 #
10 # ** Alpha Comment by GoKhlaYeh: **
11 # With libtaz, I plan to change the default location of some important
12 # directories to fit the server hierarchy. In a general view I want
13 # to make the organisation on the server and on a released system similar.
14 # The goal is having tools working out-of-the-box in both cases to make
15 # the contributors work easier and efficient.
16 # These changes will takes place with a Release Candidate, when libtaz
17 # implementation in all SliTaz tools will be finalised, and all code fully
18 # reviewed. Hope everybody agree with that ;).
19 #
21 ########################################################################
22 # COMMON DIRECTORIES
23 ########################
25 # SliTaz logs directory.
26 SLITAZ_LOG="/var/log/slitaz"
28 # SliTaz version.
29 SLITAZ_VERSION="$(cat /etc/slitaz-release)"
31 # SliTaz directory.
32 SLITAZ_DIR="/home/slitaz"
34 # Local repository for current version (can contain local packages
35 # repository, wok, sources, ...).
36 LOCAL_REPOSITORY="$SLITAZ_DIR/$SLITAZ_VERSION"
38 # Online packages repository.
39 ONLINE_REPOSITORY="http://mirror.slitaz.org/packages/$SLITAZ_VERSION/"
41 # Packages cache directory.
42 CACHE_DIR="/var/cache/tazpkg"
44 # Path to repository data.
45 LOCALSTATE="/var/lib/tazpkg"
47 # Path to installation data.
48 INSTALLED="$LOCALSTATE/installed"
50 ########################################################################
51 # COMMON VARIABLES
52 ########################
54 # the type of checksum and ext for packages.md5-like file
55 # md5sum : default (but weak)
56 # sha1sum
57 # sha256sum
58 # sha512sum
60 CHECKSUM="md5sum"
61 SUM="${CHECKSUM/sum}"
63 # Packages categories.
64 CATEGORIES="
65 base-system
66 x-window
67 utilities
68 network
69 graphics
70 multimedia
71 office
72 development
73 system-tools
74 security
75 games
76 misc
77 meta
78 non-free"
81 ########################################################################
82 # LIBTAZ OPTIONS
83 ########################
84 # These options are the default settings for all SliTaz tools which use
85 # libtaz. They are :
86 # * tazwok
87 # * tazpkg
89 # If this option is enabled - automatically install needed packages. It
90 # can be depends, build_depends, or package needed to perform a specific
91 # task.
92 # Value can be :
93 # * yes = enabled
94 # * anything else = disabled
95 auto_install=yes
97 # If you want to log all operations (into /var/log/slitaz),
98 # uncomment the following line
99 # Note: all important operations are logged by default.
100 #report_log_all=yes