initial checkin

This commit is contained in:
Mario Fetka
2011-06-26 10:27:08 +02:00
commit a6588f0a25
12 changed files with 1093 additions and 0 deletions

103
OPSI/changelog.txt Normal file
View File

@@ -0,0 +1,103 @@
opsi-template (4.0-1) stable; urgency=low
* requires opsi.winst 4.10.8
* default: 32Bit Version
* additional: 64Bit Version
* additional: 32/64Bit Version
-- detlef oertel <d.oertel@uib.de> Wed, 18 Jan 2011 16:01:53 +0200
opsi-template (1.0-20) stable; urgency=low
* removed EnvVar("temp")
* all variable definitions at top
* new loglevel
* removed $NewExe$
* more infos for inno setup
* removed number at showBitmap
* Initial section removed
* example for $installDir$ changed
-- detlef oertel <d.oertel@uib.de> Wed, 14 Apr 2010 16:01:53 +0200
opsi-template (1.0-19) stable; urgency=low
* adding 'Installshield + MSI' to the Winbatch_install section
* changing to 'if $LicenseRequired$ = "true"' from 'if not ($LicenseRequired$ = "false")'
* changed from <productid>.ins to 'setup.ins'
-- detlef oertel <d.oertel@uib.de> Tue, 26 Jan 2010 16:01:53 +0200
opsi-template (1.0-18) stable; urgency=low
* bug fix in the successful request (comment out)
opsi-template (1.0-17) stable; urgency=low
* bug fix in delsub.ins : deleting a shortcut from AllUsers desktop
-- detlef oertel <d.oertel@uib.de> Mon, 28 Sep 2009 16:01:53 +0200
opsi-template (1.0-16) stable; urgency=low
* Added some examples for other installers
* Some cleanups
* More examples in other sections
-- Jan Schneider <j.schneider@uib.de> Fri, 18 Sep 2009 13:01:53 +0200
opsi-template (1.0-15) stable; urgency=low
* bugfix for delopsi-template
-- Rupert Roeder <r.roeder@uib.de> Mon, 06 Jun 2009 11:15:00 +0100
opsi-template (1.0-14) stable; urgency=low
* bugfix for delopsi-template
-- Rupert Roeder <r.roeder@uib.de> Tue, 26 May 2009 11:15:00 +0100
opsi-template (1.0-13) stable; urgency=low
* some corrections
-- Rupert Roeder <r.roeder@uib.de> Tue, 26 May 2009 11:15:00 +0100
opsi-template (1.0-12) stable; urgency=low
* code for license management added
-- Rupert Roeder <r.roeder@uib.de> Tue, 19 May 2009 11:15:00 +0100
opsi-template (1.0-11) stable; urgency=low
* sub_check_exitcode modified
* sub_check_exitcode 1641 added
* sub_check_exitcode integrated in delsub.ins
-- Detlef Oertel <d.oertel@uib.de> Mon, 18 May 2009 14:15:00 +0100
opsi-template (1.0-10) stable; urgency=low
* modified test on exit code added 3010 success restart required
-- bardo wolf
opsi-template (1.0-9) stable; urgency=low
* renamed from softprod to opsi-template
* added test on exit code
-- Detlef Oertel <d.oertel@uib.de> Fri, 13 Mar 2009 12:35:32 +0100
opsi-template (1.0-8) stable; urgency=low
* comment Anweisungen
* delsub:
[Files_uninstall]
;something like (don't forget the trailing backslash)
;delete -sf "$InstallDir$\"
-- Detlef Oertel <d.oertel@uib.de> Wed, 5 Nov 2008 17:00:00 +0100

39
OPSI/control Normal file
View File

@@ -0,0 +1,39 @@
[Package]
version: RELEASE
depends:
incremental: False
[Product]
type: localboot
id: sysinternalssuite
name: Sysinternals Suite
description: The Sysinternals Troubleshooting Utilities have been rolled up into a single Suite of tools.
advice: ADVICE
version: VERSION
priority: PRIORITY
licenseRequired: False
productClasses:
setupScript: setup32.ins
uninstallScript: uninstall32.ins
updateScript:
alwaysScript:
onceScript:
customScript:
userLoginScript:
[ProductProperty]
type: unicode
name: install_architecture
multivalue: False
editable: False
description: which architecture (32/64 bit) has to be installed
values: ["32 only", "64 only", "both", "system specific"]
default: ["system specific"]
[ProductDependency]
action: setup
requiredProduct: alky
requiredStatus: installed
requirementType: before

9
OPSI/postinst Normal file
View File

@@ -0,0 +1,9 @@
#! /bin/sh
#
# postinst script for softprod
# This script executes after unpacking files from that archive and registering the product at the server.
#
# The following environment variables can be used to obtain information about the current installation:
# PRODUCT_ID: id of the current product
# CLIENT_DATA_DIR: directory which contains the installed client data
#

9
OPSI/preinst Normal file
View File

@@ -0,0 +1,9 @@
#! /bin/sh
#
# preinst script for softprod
# This script executes before that package will be unpacked from its archive file.
#
# The following environment variables can be used to obtain information about the current installation:
# PRODUCT_ID: id of the current product
# CLIENT_DATA_DIR: directory where client data will be installed
#