Re: [Mono-dev] Sync of mono Cert Store

2017-07-13 Thread Alexander Köplinger via Mono-devel-list
When Mono is installed from our packages (specifically the ca-certificates-mono package*), we're adding a hook into /etc/ca-certificates/update.d/ which runs cert-sync automatically whenever the system certificates are updated by the update-ca-certificates command. This is the same approach that

Re: [Mono-dev] Sync of mono Cert Store

2017-07-13 Thread Rick Tillery
Thanks, Dave. Yes, that's how our install syncs in the first place. The thing is that customers would need to know to run this on their machines in addition to modifying the system cert store. (Plus, it's a bit more complicated & nonstandard because we have a bundled mono, while they're may not e

Re: [Mono-dev] Sync of mono Cert Store

2017-07-13 Thread David Curylo
Rick, You can run `cert-sync` at any time to synchronize new certs with your mono cert store. -Dave > On Jul 13, 2017, at 6:01 PM, Rick Tillery wrote: > > As a follow-up my previous question (thanks Alex), we have a concern about > changes to the system certificate store & synchronization wi

[Mono-dev] Sync of mono Cert Store

2017-07-13 Thread Rick Tillery
As a follow-up my previous question (thanks Alex), we have a concern about changes to the system certificate store & synchronization with the mono cert store. I see that the system cert store is imported to mono on install (& we now do this as well in our install), but what is the expected approac

Re: [Mono-dev] unaligned.cs

2017-07-13 Thread Neale Ferguson
Note the endianness check in basic-vectors test. I think doing the same in unaligned.cs would work. Now, if I could just get roslyn working. On 7/13/17, 2:21 PM, "Rodrigo Kumpera" wrote: >We should either disable those tests or address the endianness issues on >them ___

Re: [Mono-dev] unaligned.cs

2017-07-13 Thread Rodrigo Kumpera via Mono-devel-list
We should either disable those tests or address the endianness issues on them On 7/13/17, 11:21 AM, "Mono-devel-list on behalf of Neale Ferguson" wrote: On s390x (big endian) unaligned test_0_ldobj/test_0_ldind/test_0_stobj fail due to endianness. _

[Mono-dev] unaligned.cs

2017-07-13 Thread Neale Ferguson
On s390x (big endian) unaligned test_0_ldobj/test_0_ldind/test_0_stobj fail due to endianness. ___ Mono-devel-list mailing list Mono-devel-list@lists.dot.net http://lists.dot.net/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Bundled mono Certificate Store

2017-07-13 Thread Rick Tillery
Fair enough. Thanks for the info. Rick On Jul 13, 2017 12:02 PM, "Alexander Köplinger" wrote: > We had a discussion related to this recently in the mkbundle context: > https://www.mail-archive.com/mono-devel-list@lists.dot.net/msg00529.html > > At the moment it seems there's no supported way of

Re: [Mono-dev] Bundled mono Certificate Store

2017-07-13 Thread Alexander Köplinger via Mono-devel-list
We had a discussion related to this recently in the mkbundle context: https://www.mail-archive.com/mono-devel-list@lists.dot.net/msg00529.html At the moment it seems there's no supported way of changing the path, other than changing the source. - Alex On 13 Jul 2017, at 17:52, Rick Tillery ma

Re: [Mono-dev] SEGV during nursery scanning

2017-07-13 Thread Vlad Brezae via Mono-devel-list
Hey Neale, How are you getting this crash ? Is it reliable ? Do you know what commit seems to trigger it ? You can try running with MONO_GC_DEBUG=nursery-canaries for additional logging. Vlad From: Mono-devel-list on behalf of Neale Ferguson Date: Wednesday, 12 July 2017 at 0

[Mono-dev] Bundled mono Certificate Store

2017-07-13 Thread Rick Tillery
Due to our reliance on mono & our need to ensure a tested version is used with our product, we are bundling mono in our package for install. With this setup, we have a separate registry, configuration, directory of assemblies, etc., so install/uninstall/update of system mono won't affect us. Howeve