This commit is contained in:
2012-04-05 15:03:00 +02:00
commit 6b656fb1b9
11 changed files with 394 additions and 0 deletions

2
OPSI/changelog.txt Normal file
View File

@@ -0,0 +1,2 @@
Don't add cahngelog entries here!
It get autogenerated by the opsi-builder.sh

58
OPSI/control Normal file
View File

@@ -0,0 +1,58 @@
[Package]
version: RELEASE
depends:
incremental: False
[Product]
type: localboot
id: joindomain
name: joindomain
description: Paket um PC in Domaene aufzunehmen
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"]
[ProductProperty]
type: unicode
name: namedomaene
multivalue: False
editable: True
description: Name der Domaene der PC beitreten soll
values: [""]
default: ["DomainName"]
[ProductProperty]
type: unicode
name: joinadmin
multivalue: False
editable: True
description: Accountname mit Berechtigung PC in Domaene aufzunehmen
values: [""]
default: ["JoinAdmin"]
[ProductProperty]
type: unicode
name: joinadminpw
multivalue: False
editable: True
description: Passwort Accountname mit Berechtigung PC in Domaene aufzunehmen
values: [""]
default: ["JoinAdminPW"]

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
#