change LogDir; add ProductProperty desktoplink, custom-post-install, custom-post-uninstall
This commit is contained in:
parent
f882709ddd
commit
17ab99095f
@ -38,6 +38,17 @@ Registry_uninstall /32Bit
|
|||||||
comment "Delete program shortcuts"
|
comment "Delete program shortcuts"
|
||||||
LinkFolder_uninstall
|
LinkFolder_uninstall
|
||||||
|
|
||||||
|
DefVar $Property_CustomPostUninstall$
|
||||||
|
Set $Property_CustomPostUninstall$ = getProductProperty("custom-post-uninstall","none")
|
||||||
|
if not ($Property_CustomPostUninstall$ = "none")
|
||||||
|
comment "Include custom post uninstall file"
|
||||||
|
if FileExists("%ScriptPath%\custom\" + $Property_CustomPostUninstall$)
|
||||||
|
sub_CustomPostUninstall
|
||||||
|
else
|
||||||
|
LogError "Include script NOT exists (" + $Property_CustomPostUninstall$ +")"
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
[Winbatch_uninstall_old]
|
[Winbatch_uninstall_old]
|
||||||
"$UninstallProgramOld$" /SILENT
|
"$UninstallProgramOld$" /SILENT
|
||||||
ping 127.0.0.1 -n 5
|
ping 127.0.0.1 -n 5
|
||||||
@ -63,9 +74,12 @@ del -sf "$InstallDir$\"
|
|||||||
;
|
;
|
||||||
; Example of deleting a shortcut from AllUsers desktop:
|
; Example of deleting a shortcut from AllUsers desktop:
|
||||||
;
|
;
|
||||||
; set_basefolder common_desktopdirectory
|
set_basefolder common_desktopdirectory
|
||||||
; set_subfolder ""
|
set_subfolder ""
|
||||||
; delete_element $ProductId$
|
delete_element $NAME$
|
||||||
|
|
||||||
|
[sub_CustomPostUninstall]
|
||||||
|
include_insert "%ScriptPath%\custom\" + $Property_CustomPostUninstall$
|
||||||
|
|
||||||
[Sub_check_exitcode]
|
[Sub_check_exitcode]
|
||||||
comment "Test for installation success via exit code"
|
comment "Test for installation success via exit code"
|
||||||
|
@ -19,7 +19,11 @@ DefVar $OLD_VERSION$
|
|||||||
DefVar $OLD_CREATOR_TAG$
|
DefVar $OLD_CREATOR_TAG$
|
||||||
DefVar $OLD_RELEASE$
|
DefVar $OLD_RELEASE$
|
||||||
|
|
||||||
Set $LogDir$ = "%SystemDrive%\tmp"
|
;Property Variables
|
||||||
|
DefVar $Property_CustomPostInstall$
|
||||||
|
DefVar $Property_DesktopLink$
|
||||||
|
|
||||||
|
Set $LogDir$ = "%opsiLogDir%"
|
||||||
|
|
||||||
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
|
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
|
||||||
; and adds the following variables:
|
; and adds the following variables:
|
||||||
@ -70,8 +74,21 @@ else
|
|||||||
comment "Patch Registry"
|
comment "Patch Registry"
|
||||||
Registry_install /32Bit
|
Registry_install /32Bit
|
||||||
|
|
||||||
|
Set $Property_DesktopLink$ = GetProductProperty("DesktopLink","false")
|
||||||
|
if ($Property_DesktopLink$ = "true")
|
||||||
comment "Create shortcuts"
|
comment "Create shortcuts"
|
||||||
LinkFolder_install
|
LinkFolder_install
|
||||||
|
endif
|
||||||
|
|
||||||
|
Set $Property_CustomPostInstall$ = getProductProperty("custom-post-install","none")
|
||||||
|
if not ($Property_CustomPostInstall$ = "none")
|
||||||
|
comment "Include custom post install file"
|
||||||
|
if FileExists("%ScriptPath%\custom\" + $Property_CustomPostInstall$)
|
||||||
|
sub_CustomPostInstall
|
||||||
|
else
|
||||||
|
LogError "Include script NOT exists (" + $Property_CustomPostInstall$ +")"
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -116,17 +133,20 @@ copy "$IniCfgFile$" "$InstallDir$"
|
|||||||
;
|
;
|
||||||
; Example of creating an shortcut to the installed exe on AllUsers desktop:
|
; Example of creating an shortcut to the installed exe on AllUsers desktop:
|
||||||
;
|
;
|
||||||
; set_basefolder common_desktopdirectory
|
set_basefolder common_desktopdirectory
|
||||||
; set_subfolder ""
|
set_subfolder ""
|
||||||
;
|
;
|
||||||
; set_link
|
set_link
|
||||||
; name: $ProductId$
|
name: $NAME$
|
||||||
; target: <path to the program>
|
target: "$InstallDir32$\FreeMind.exe"
|
||||||
; parameters: <some_param>
|
parameters:
|
||||||
; working_dir: $InstallDir$
|
working_dir: $InstallDir32$
|
||||||
; icon_file: <path to icon file>
|
icon_file:
|
||||||
; icon_index: 2
|
icon_index:
|
||||||
; end_link
|
end_link
|
||||||
|
|
||||||
|
[sub_CustomPostInstall]
|
||||||
|
include_insert "%ScriptPath%\custom\" + $Property_CustomPostInstall$
|
||||||
|
|
||||||
[Sub_check_exitcode]
|
[Sub_check_exitcode]
|
||||||
comment "Test for installation success via exit code"
|
comment "Test for installation success via exit code"
|
||||||
|
@ -18,7 +18,7 @@ DefVar $OLD_VERSION$
|
|||||||
DefVar $OLD_CREATOR_TAG$
|
DefVar $OLD_CREATOR_TAG$
|
||||||
DefVar $OLD_RELEASE$
|
DefVar $OLD_RELEASE$
|
||||||
|
|
||||||
Set $LogDir$ = "%SystemDrive%\tmp"
|
Set $LogDir$ = "%opsiLogDir%"
|
||||||
|
|
||||||
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
|
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
|
||||||
; and adds the following variables:
|
; and adds the following variables:
|
||||||
|
24
OPSI/control
24
OPSI/control
@ -30,6 +30,30 @@ description: which architecture (32/64 bit) has to be installed
|
|||||||
values: ["32 only", "64 only", "both", "system specific"]
|
values: ["32 only", "64 only", "both", "system specific"]
|
||||||
default: ["system specific"]
|
default: ["system specific"]
|
||||||
|
|
||||||
|
[ProductProperty]
|
||||||
|
type: bool
|
||||||
|
name: desktoplink
|
||||||
|
description: Show Desktop Link on/off
|
||||||
|
default: False
|
||||||
|
|
||||||
|
[ProductProperty]
|
||||||
|
type: unicode
|
||||||
|
name: custom-post-install
|
||||||
|
multivalue: False
|
||||||
|
editable: True
|
||||||
|
description: Define filename for include script in custom directory after installation
|
||||||
|
values: ["none"]
|
||||||
|
default: ["none"]
|
||||||
|
|
||||||
|
[ProductProperty]
|
||||||
|
type: unicode
|
||||||
|
name: custom-post-uninstall
|
||||||
|
multivalue: False
|
||||||
|
editable: True
|
||||||
|
description: Define filename for include script in custom directory after uninstallation
|
||||||
|
values: ["none"]
|
||||||
|
default: ["none"]
|
||||||
|
|
||||||
[ProductDependency]
|
[ProductDependency]
|
||||||
action: setup
|
action: setup
|
||||||
requiredProduct: sereby.aio
|
requiredProduct: sereby.aio
|
||||||
|
Loading…
Reference in New Issue
Block a user