aboutsummaryrefslogtreecommitdiff
path: root/tags/0.5.1/conf/simplepkg.conf.new
blob: 50ea4ad5796dec7be581f68e2945bcde8fcfe793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#
# /etc/simplepkg/simplepkg.conf
#

# Default architecture: set this option if you dont want simplepkg
# to use the value from /etc/slackware-version
# DEFAULT_ARCH="i386"

# Default version: set this option if you dont want simplepkg;
# to use the value from /etc/slackware-version
# DEFAULT_VERSION="11.0"

# Where jails are placed
JAIL_ROOT="/vservers"

# Wheter mkjial should add new jails in the jail list;
# to enable it, set to "1" or "yes"
ADD_TO_JAIL_LIST="1"

# Whether mkjail should clean the package cache before installation
# to enable it, set to "1" or "yes"
SIMPLARET_CLEAN="1"

# whether mkjail should clean the package cache after the installation;
# to enable it, set to "1" or "yes"
SIMPLARET_DELETE_DOWN="1"

# Whether mkjail should issue a simplaret --update before install the jail;
# to enable it, set to "1" or "yes"
SIMPLARET_UPDATE="1"

# Wheter try to download from the next repository on failed download.
SIMPLARET_DOWNLOAD_FROM_NEXT_REPO="1"

# Wheter delete also patches when simplaret --purge is called;
# to enable it, set to "1" or "yes"
SIMPLARET_PURGE_PATCHES="1"

# Whether delete each package rigth after its installation;
# to enable it, set to "1" or "yes"
SIMPLARET_DELETE_DURING="0"

# Delete packages older than N weeks from the cache
SIMPLARET_PURGE_WEEKS="3"

# Where patches are placed
PATCHES_DIR="/var/simplaret/patches"

# Place to store your packages
STORAGE="/var/simplaret/packages"

# Whether to use passive ftp transfers;
# to enable it, set to "1" or "yes"
PASSIVE_FTP="1"

# Http retrieval tool;
# available parameters are "wget" or "curl"
HTTP_TOOL="curl"

# Ftp retrieval tool;
# available parameters are "wget", "curl" or "ncftpget"
FTP_TOOL="curl"

# Set connection timeout in seconds
CONNECT_TIMEOUT="20"

# ROOT repository package priority
ROOT_PRIORITY="patches slackware extra testing pasture"

# REPOS repository package priority
REPOS_PRIORITY="patches slackware extra testing pasture"

# Whether to check package signatures (you should have the repository
# maintainer key on your keyring)
SIGNATURE_CHECKING="0"

# Whether simplaret will try to solve dependencies by looking
# for packages' slack-required
DEPENDENCY_CHECKING="1"

# Enabling this option (i.e, setting to "1" or "yes"), simplaret will
# donwload even # already applied patches, a good option when you plan
# to keep local copies of all needed patches for your system
DOWNLOAD_EVEN_APPLIED_PATCHES="0"

# Enabling this option (i.e, setting to "1" or "yes"), simplaret will
# look at your standard repositories for new packages; if it find a
# package with different version of your current installed package and
# also this package isnt in the packages folder, then the new package
# is applied; if in doubt, just say no or leave blank. Otherwise set it
# either to "yes" or "1" and remember that if enabling this feature can
# cause problems if you use more than one REPOS definition for each
# ARCH and VERSION. Also, this option can be very slow.
CONSIDER_ALL_PACKAGES_AS_PATCHES="0"

# Enabling this option (i.e, setting to "1" or "yes"), simplaret will
# store patches it finds on ROOT repositories on
#
#   $PATCHES_DIR/$ARCH/$VERSION/root-$repository_name.
#
# By default this option is turned off because it breaks the standard
# way to store packages and can cause some confusion, but its an useful
# feature if you like to see all patches apart from common packages and/or
# stored in the same tree.
STORE_ROOT_PATCHES_ON_PATCHES_DIR="0"

# Set to yes if your templates will be placed in a subversion repository
# This just work if TEMPLATE_STORAGE_STYLE is set to own-folder (default)
TEMPLATES_UNDER_SVN="no"

# Where your templates will be located.
# Dont change it except you know what you're doing.
TEMPLATE_FOLDER="/etc/simplepkg/templates"

# This variable controls in which folder / subfolder your templates will
# be stored. Possible values are:
#
# - simplepkg-folder: templates are stored at /etc/simplepkg
# - templates-folder: templates are stored at /etc/simplepkg/templates
# - own-folder: each template stored at its own folder
#               at /etc/simplepkg/templates/template-name
#
# This variable has backwards purposes only, so dont change it.
TEMPLATE_STORAGE_STYLE="own-folder"

#---------------------------------------------------------------------
#                     MKBUILD AND CREATEPKG SECTION
#---------------------------------------------------------------------
# Set SlackBuilds default directory from scripts
SLACKBUILDS_DIR="/var/slackbuilds"

# Set binaries default repository directory
#MAKEPKG_REPOS="/var/createpkg"

# Set sources default directory
#SOURCE_DIR="/var/sources"

# Set color style
# possible values are: color,gray, none
#COLOR_MODE="none"

# Remove old packages from repository tree by createpkg
# 0 enable
# 1 desable
#REMOVE_OLD_PACKAGE=1

# Move package to SlackBuilds-like tree
# 0 enable
# 1 desable
#MOVE_BIN_PACKAGE=1

#---------------------------------------------------------------------