remove comments from cfg and use full name for downloads

This commit is contained in:
Mario Fetka 2012-02-17 06:35:38 +01:00
parent 9c4203285d
commit ffb864abe3
5 changed files with 6 additions and 81 deletions

View File

@ -0,0 +1 @@
81f2da8c5e1590e6c2d71e08cce5b8053f8b1c05 /home/mario/.opsi-dist-cache/turbovnc-viewer-1.0.2/X86/TurboVNC-1.0.2.exe

View File

@ -1 +0,0 @@
81f2da8c5e1590e6c2d71e08cce5b8053f8b1c05 /home/dtrinks/.opsi-dist-cache/virtualgl.org/turbovnc/1.0.2/X86/TurboVNC.exe

View File

@ -0,0 +1 @@
90e547c1b361a2494473641a6e4ed47e29e2e51d /home/mario/.opsi-dist-cache/turbovnc-viewer-1.0.2/X86_64/TurboVNC64-1.0.2.exe

View File

@ -1 +0,0 @@
90e547c1b361a2494473641a6e4ed47e29e2e51d /home/dtrinks/.opsi-dist-cache/virtualgl.org/turbovnc/1.0.2/X86_64/TurboVNC64.exe

View File

@ -12,81 +12,6 @@ ADVICE=""
# Valid value: restricted | public
TYPE="public"
# EXTRACTWITH - defines the used programm for decompression
# Valid values: 7zip | unzip
# Default value: 7zip
# This Value is only usefull in combinnation with Variable INSTALL[INDEX]
# EXTRACTWITH="7zip"
# Begin Not Implemented ---
# DOWNLOADWITH - defines the used programm for download
# Valid values: wget | plowdown
# Default value: wget
# DOWNLOADWITH="wget"
# End Not Implemented ---
#################
# Downloader (DL) object array
################
#
# To build the opsi-packet, some files are needed. The files are defined by a file object.
# A file object contains different attributes. All attributes (FILE, SOURCE, ..) are binded together
# using a file index.
#
# Target "prepare" : Working directory INST_DIR and OUTPUT_DIR are prepared
# Target "retrieve" : the files are downloaded to the the caching storage ${DIST_CACHE_DIR}/$DL_ARCH[i]/$DL_FILE[i]
# Target "create" : the files are extrated/copied to ${INST_DIR}/CLIENT_DATA/${DL_ARCH[$i]}
# Target "package" : opsi-makeproductfile is called processing ${INST_DIR} directory
#
# - Filename
# Filename used inside the builder and opsi package
# Mandatory parameter.
# DL_FILE[index]="cool-stuff.exe"
#
# - Source URL
# The source URL to download the file from. Multiple URLs are separted by a ";" or ","
# The $DIST_PRIVATE_REPOS variable will be added as the first URL automatically
# Therefore, you download the non-public programs to your local/privagte repository.
# You can use variable like $PN or $Version inside the URLs
# DL_SOURCE[index]="http://cool-stuff.de/download/cool-stuff_1.001.exe;http://mirro5.cool-stuff.at/$PN_$VERSION.exe"
#
# - Architecture
# Definition of the architecture to separate different files. This will be used in
# the file structure inside the opsi-package. Also, you can use it in your repos-URL's
# or filenames (OPSI_REPOS_FILE_PATTERN, OPSI_REPOS_PRODUCT_DIR) to structure the repos.
# If it's a file for all architecture, the variable have not to be set.
# Optional parameter. Default value: <not set>
# Valid values: <not set>, "X86", "X86_64"
# DL_ARCH[index]="X86"
#
# - WINST variable:
# You can access the file (included in the opsi-package) using WINST script language.
# The target "package" will replace all occurence of the string "@@BUILDER_VARIABLES@@"
# by pairs of "DefVar/Set"-commands, if the WINST attribute is set. Default value: <not set>
# Optional parameter. Default value: <not set>,
# DL_WINST_NAME[index]=itWESS
#
# - Compression format
# If the retrieved file is compressed, the compression format is specified to
# extract it. If the parameter is not set, no extraction happens
# Optional parameter. Valid values: unzip, 7zip. Default value: <not set>.
# DL_EXTRACT_FORMAT="zip"
#
# - Extraction directory for compressed files
# This Variable only works in combination with INSTALL and forces the extraction
# to be done into the specified directory.
# This will result in the files to be extracted to ${OUTPUT_DIR}/${DL_ARCH}/${DL_EXTRACT_TO}.
# This feature is mostly needed if a package includes more setup programms that are nemed the
# same. This way you place the setups into diffent dirs
# Optional parameter. Default value: <empty>
# DL_EXTRACT_TO[index]="office"
#
# - Specify Downloader
# Defines the downloader to use to retrieve the SOURCE file
# Optional parameter. Valid values: wget|plowdown. Default value: wget
#
# File array index for the image showing while installing the program
ICON_DL_INDEX=0
@ -95,13 +20,13 @@ DL_SOURCE[0]="http://www.prorender.de/turbovnc.jpg"
# http://skins14.wincustomize.com/1/53/153872/29/4934/preview-29-4934-280.jpg
DL_FILE[1]="TurboVNC.exe"
DL_SOURCE[1]="http://downloads.sourceforge.net/project/virtualgl/TurboVNC/1.0.2/TurboVNC-1.0.2.exe?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fvirtualgl%2Ffiles%2FTurboVNC%2F1.0.2%2F&ts=1329390319&use_mirror=kent"
DL_FILE[1]="TurboVNC-${VERSION}.exe"
DL_SOURCE[1]="http://downloads.sourceforge.net/project/virtualgl/TurboVNC/${VERSION}/TurboVNC-${VERSION}.exe"
DL_ARCH[1]="X86"
DL_WINST_NAME[1]=InstallExe
DL_FILE[2]="TurboVNC64.exe"
DL_SOURCE[2]="http://downloads.sourceforge.net/project/virtualgl/TurboVNC/1.0.2/TurboVNC64-1.0.2.exe?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fvirtualgl%2Ffiles%2FTurboVNC%2F1.0.2%2F&ts=1329390396&use_mirror=garr"
DL_FILE[2]="TurboVNC64-${VERSION}.exe"
DL_SOURCE[2]="http://downloads.sourceforge.net/project/virtualgl/TurboVNC/${VERSION}/TurboVNC64-${VERSION}.exe"
DL_ARCH[2]="X86_64"
DL_WINST_NAME[2]=Install64Exe