Added new version and two variables for community upload (ui)

This commit is contained in:
Peter Singer
2012-10-26 21:59:50 +02:00
parent 11a48951a3
commit ba1dd9641a
9 changed files with 60 additions and 6 deletions

View File

@@ -6,5 +6,5 @@ MsiId64={82CD33B2-1DE6-4663-B6F0-1592B2376F78}
[COMMON]
PN=sourcefire.immunet
VERSION=3.0.8.9055
VERSION=3.0.8.9025
uVersion=3.0.8

View File

@@ -50,6 +50,8 @@ DefVar $agent_driver_protmode_active$
DefVar $agent_driver_protmode_file$
DefVar $agent_driver_protmode_process$
DefVar $agent_cloud_upload_enable$
DefVar $agent_cloud_upload-telemetry_enable$
DefVar $agent_cloud_upload-metadata_enable$
DefVar $ui_notification_verbose$
DefVar $ui_notification_gaming$
DefVar $ui_notification_cloud$
@@ -124,6 +126,8 @@ Set $agent_driver_protmode_process$ = GetProductProperty("agent_driver_protmode_
comment "Flag_NoWindowsTour"
comment "description: No Windows Tour"
Set $agent_cloud_upload_enable$ = GetProductProperty("agent_cloud_upload_enable", "1")
Set $agent_cloud_upload-telemetry_enable$ = GetProductProperty("agent_cloud_upload-telemetry_enable", "1")
Set $agent_cloud_upload-metadata_enable$ = GetProductProperty("agent_cloud_upload-metadata_enable", "1")
comment "Flag_NoWindowsTour"
comment "description: No Windows Tour"
@@ -243,6 +247,14 @@ else
if ( $agent_cloud_upload_enable$ = "1")
Dosbatch_agent_cloud_upload_enable_32
endif
if ( $agent_cloud_upload-telemetry_enable$ = "1")
Dosbatch_agent_cloud_upload-telemetry_enable_32
endif
if ( $agent_cloud_upload-metadata_enable$ = "1")
Dosbatch_agent_cloud_upload-metadata_enable_32
endif
if ( $ui_notification_verbose$ = "1")
Dosbatch_ui_notification_verbose_32
@@ -335,6 +347,14 @@ else
if ( $agent_cloud_upload_enable$ = "1")
Dosbatch_agent_cloud_upload_enable_64
endif
if ( $agent_cloud_upload-telemetry_enable$ = "1")
Dosbatch_agent_cloud_upload-telemetry_enable_64
endif
if ( $agent_cloud_upload-metadata_enable$ = "1")
Dosbatch_agent_cloud_upload-metadata_enable_64
endif
if ( $ui_notification_verbose$ = "1")
Dosbatch_ui_notification_verbose_64
@@ -436,6 +456,14 @@ xml ed -O -u "/config/agent/driver/protmode/process" -v $agent_driver_protmode_p
copy "$InstallDir32$\local.xml" "$InstallDir32$\local.xml.old"
xml ed -O -u "/config/agent/cloud/upload/enabled" -v $agent_cloud_upload_enable$ "$InstallDir32$\local.xml.old" > "$InstallDir32$\local.xml"
[Dosbatch_agent_cloud_upload-telemetry_enable_32]
copy "$InstallDir32$\local.xml" "$InstallDir32$\local.xml.old"
xml ed -O -u "/config/janus/upload/event/enabled" -v $agent_cloud_upload-telemetry_enable$ "$InstallDir32$\local.xml.old" > "$InstallDir32$\local.xml"
[Dosbatch_agent_cloud_upload-metadata_enable_32]
copy "$InstallDir32$\local.xml" "$InstallDir32$\local.xml.old"
xml ed -O -u "/config/agent/fmd/enabled" -v $agent_cloud_upload-metadata_enable$ "$InstallDir32$\local.xml.old" > "$InstallDir32$\local.xml"
[Dosbatch_ui_notification_verbose_32]
copy "$InstallDir32$\local.xml" "$InstallDir32$\local.xml.old"
xml ed -O -u "/config/ui/notification/verbose" -v $ui_notification_verbose$ "$InstallDir32$\local.xml.old" > "$InstallDir32$\local.xml"
@@ -519,6 +547,14 @@ xml ed -O -u "/config/agent/driver/protmode/process" -v $agent_driver_protmode_p
copy "$InstallDir64$\local.xml" "$InstallDir64$\local.xml.old"
xml ed -O -u "/config/agent/cloud/upload/enabled" -v $agent_cloud_upload_enable$ "$InstallDir64$\local.xml.old" > "$InstallDir64$\local.xml"
[Dosbatch_agent_cloud_upload-telemetry_enable_64]
copy "$InstallDir64$\local.xml" "$InstallDir64$\local.xml.old"
xml ed -O -u "/config/janus/upload/event/enabled" -v $agent_cloud_upload-telemetry_enable$ "$InstallDir64$\local.xml.old" > "$InstallDir64$\local.xml"
[Dosbatch_agent_cloud_upload-metadata_enable_64]
copy "$InstallDir64$\local.xml" "$InstallDir64$\local.xml.old"
xml ed -O -u "/config/agent/fmd/enabled" -v $agent_cloud_upload-metadata_enable$ "$InstallDir64$\local.xml.old" > "$InstallDir64$\local.xml"
[Dosbatch_ui_notification_verbose_64]
copy "$InstallDir64$\local.xml" "$InstallDir64$\local.xml.old"
xml ed -O -u "/config/ui/notification/verbose" -v $ui_notification_verbose$ "$InstallDir64$\local.xml.old" > "$InstallDir64$\local.xml"