Wednesday, March 30, 2016

[389-commits] 2 commits - passwordsync/build.bat passwordsync/wix

passwordsync/build.bat | 2 +-
passwordsync/wix/PassSync.wxs | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 760a7e09105b07c7319f07bde2ec0666b175bc53
Author: Noriko Hosoi <nhosoi@redhat.com>
Date: Wed Mar 30 13:29:01 2016 -0700

bump the PassSync version to 1.1.7

diff --git a/passwordsync/build.bat b/passwordsync/build.bat
index 7aa861a..7a7f404 100755
--- a/passwordsync/build.bat
+++ b/passwordsync/build.bat
@@ -170,7 +170,7 @@ if [%BRANDNOSPACE%] == [] (
set BRANDNOSPACE=389
)
if [%VERSION%] == [] (
- set VERSION=1.1.6
+ set VERSION=1.1.7
)

rem ======== Set Various Build Directories ========


commit 9d00c49afbc3719fcd5c41da5a677d0fe40d29ff
Author: Viktor Ashirov <vashirov@redhat.com>
Date: Tue Mar 29 22:14:40 2016 +0200

Ticket #48778 - PassSync installer overwrites "Notification Packages" value in registry instead of appending it

Bug Description:
During the installation of the PassSync, key "Notification Packages"
in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\
is owerwritten instead of being appended.

Fix Description:
Use MultiStringValue for updating the registry value:
http://wixtoolset.org/documentation/manual/v3/xsd/wix/multistringvalue.html

https://fedorahosted.org/389/ticket/48778

Reviewed by: nhosoi@redhat.com

diff --git a/passwordsync/wix/PassSync.wxs b/passwordsync/wix/PassSync.wxs
index 55b3c56..e61ab00 100644
--- a/passwordsync/wix/PassSync.wxs
+++ b/passwordsync/wix/PassSync.wxs
@@ -271,7 +271,9 @@
<RegistryValue Name='Log Level' Type='string' Value='0' />
</RegistryKey>
<RegistryKey Id='NotPkgs' Root='HKLM' Key='SYSTEM\ControlSet001\Control\Lsa' ForceCreateOnInstall='yes' >
- <RegistryValue Name='Notification Packages' Type='multiString' Value='passhook'/>
+ <RegistryValue Name='Notification Packages' Type='multiString' Action='append'>
+ <MultiStringValue>passhook</MultiStringValue>
+ </RegistryValue>
</RegistryKey>

<RemoveFile Id='NSSDBFiles' On='uninstall' Name='*.db'/>

--
389 commits mailing list
389-commits@%(host_name)s
http://lists.fedoraproject.org/admin/lists/389-commits@lists.fedoraproject.org

No comments:

Post a Comment