[Translators-l] Tech News #24, 2024

2024-06-06 Thread Nick Wilson (Quiddity)
The latest tech newsletter is ready for early translation: https://meta.wikimedia.org/wiki/Tech/News/2024/24 Direct translation link: https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-Tech%2FNews%2F2024%2F24&action=page We plan to send the newsletter on Monday afternoon (U

Re: [ovs-dev] [PATCH] python: idl: Fix index not being updated on row modification.

2024-06-06 Thread Terry Wilson
> > 'indexed' table from the idltest schema. > > > > Fixes: 13973bc41524 ("Add multi-column index support for the Python IDL") > > Reported-at: > > https://mail.openvswitch.org/pipermail/ovs-discuss/2024-May/053159.html > > Reported-by: Robert

Re: [ovs-dev] [PATCH v2 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-06 Thread Wilson Peng via dev
OvsCtUpdateTuple(key, &parent->key); 1345 OVS_RELEASE_SPIN_LOCK(&(parent->lock), irql); 1346 } else { 1347 OvsCtUpdateTuple(key, &entry->key); 1348 } ... 1365 OVS_RELEASE_SPIN_LOCK(&(entry->lock), irql); --->this is the SPIN_LOCK rele

[Bug 2068547] [NEW] package rabbitmq-server 3.12.1-1ubuntu1 failed to install/upgrade: o subprocesso instalado, do pacote rabbitmq-server, o script post-installation retornou erro do status de saída 1

2024-06-05 Thread Wilson Arroyo de Souza
Public bug reported: Desde release 22.04 está com esse problema ProblemType: Package DistroRelease: Ubuntu 24.04 Package: rabbitmq-server 3.12.1-1ubuntu1 ProcVersionSignature: Ubuntu 6.5.0-35.35-generic 6.5.13 Uname: Linux 6.5.0-35-generic x86_64 ApportVersion: 2.28.1-0ubuntu3 Architecture: amd64

Re: [Smcwg-public] [Voting Period Begins] Ballot SMC07 Align Logging Requirement and Key Escrow clarification

2024-06-05 Thread Ben Wilson via Smcwg-public
Mozilla votes "yes" on Ballot SMC-007. On Wed, Jun 5, 2024 at 6:30 AM Martijn Katerbarg via Smcwg-public < smcwg-public@cabforum.org> wrote: > *Summary: * > > This ballot aims to clarify what data needs to be logged as part of the > "Firewall and router activities" logging requirement in the S/MI

Re: [ovs-dev] [PATCH v2 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-05 Thread Wilson Peng via dev
iginal conntrack entry (port1-->69) and lead to conntrack_entry parent be equal to itself. Only ftp/tftp traffic processing will have parent-child logic. Regards Wilson On Wed, Jun 5, 2024 at 8:32 PM Simon Horman wrote: > On Wed, Jun 05, 2024 at 01:35:52PM +0800, Wilson Peng v

Re: [ovs-dev] [PATCH v2 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-05 Thread Wilson Peng via dev
iginal conntrack entry (port1-->69) and lead to conntrack_entry parent be equal to itself. Only ftp/tftp traffic processing will have parent-child logic. Regards Wilson On Wed, Jun 5, 2024 at 8:32 PM Simon Horman wrote: > On Wed, Jun 05, 2024 at 01:35:52PM +0800, Wilson Peng v

[ovs-dev] [PATCH v2 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-04 Thread Wilson Peng via dev
From: Wilson Peng It is found the TFTP reply packet with source port 69 will trigger host hang And the possible coredump. According to part 4 in TFTP RFC https://datatracker.ietf.org/doc/html/rfc1350, The TFTP reply packet should use a new source-port(not 69) to connect to Client. Upon this

[ovs-dev] [PATCH v1 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-04 Thread Wilson Peng via dev
From: Wilson Peng It is found the TFTP reply packet with source port 69 will trigger host hang And the possible coredump. According to part 4 in TFTP RFC https://datatracker.ietf.org/doc/html/rfc1350, The TFTP reply packet should use a new source-port(not 69) to connect to Client. Upon this

Approval of Taiwan CA's Root Inclusion Request

2024-06-04 Thread ';Ben Wilson' via dev-security-policy@mozilla.org
Greetings, Public discussion regarding inclusion of the TWCA CYBER Root CA (websites trust bit with EV) and the TWCA Global Root CA G2 (email trust bit) began on the CCADB Public List on April 22, 2024 ( https://groups.google.com/a/ccadb.org/g/public/c/rAsxoNILZ6A/m/vqn7iTHEAwAJ) and concluded rec

Help Improve the Mozilla Root Store Policy

2024-06-04 Thread ';Ben Wilson' via dev-security-policy@mozilla.org
All, I am collecting suggested updates to improve the Mozilla Root Store Policy (MRSP). Share your thoughts on how we can make the MRSP more clear and better for improving Internet security. Feel free to comment

Re: [Servercert-wg] Discussion Period Begins - Ballot SC-067 V3: "Require domain validation and CAA checks to be performed from multiple Network Perspectives"

2024-06-04 Thread Clint Wilson via Servercert-wg
Hi Roman, I think it’s because these developments are at an early stage (amongst other reasons) that it doesn’t make sense to postpone the ballot. I don’t see anything super concrete indicating that this project will alter the industry’s approach to MPIC adoption, and I believe something pretty

[Servercert-wg] Revocation Reason Codes for CA Revocations

2024-06-04 Thread Ben Wilson via Servercert-wg
All, I've opened up this issue in GitHub - https://github.com/cabforum/servercert/issues/520. I recall that if a CA is revoked, then the reason code must be present (or provided via OCSP) and must contain one of: keyCompromise (1) cACompromise (2) affiliationChanged (3) superseded (4) cessationOf

[ovs-dev] [PATCH v1 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-04 Thread Wilson Peng via dev
From: Wilson Peng It is found the TFTP reply packet with source port 69 will trigger host hang And the possible coredump. According to part 4 in TFTP RFC https://datatracker.ietf.org/doc/html/rfc1350, The TFTP reply packet should use a new source-port(not 69) to connect to Client. Upon this

[ovs-dev] [PATCH v1 1/1] datapath-windows : Avoid a deadlock when processing TFTP conntrack.

2024-06-04 Thread Wilson Peng via dev
From: Wilson Peng It is found the TFTP reply packet with source port 69 will trigger host hang And the possible coredump. According to part 4 in TFTP RFC https://datatracker.ietf.org/doc/html/rfc1350, The TFTP reply packet should use a new source-port(not 69) to connect to Client. Upon this

[ovs-dev] [PATCH v1 1/1] datapath-windows : TFTP rep Avoid a deadlock when processing TFTP conntrack.

2024-06-04 Thread Wilson Peng via dev
From: Wilson Peng It is found the TFTP reply packet with source port 69 will trigger host hang And the possible coredump. According to part 4 in TFTP RFC https://datatracker.ietf.org/doc/html/rfc1350, The TFTP reply packet should use a new source-port(not 69) to connect to Client. Upon this

Re: [go-cd] Assign Administrator Permissions to Role Without Manually Modifying cruise-config.xml

2024-06-03 Thread Chad Wilson
gain, > Jason > > > On Sunday 2 June 2024 at 08:27:26 UTC-4 Aravind SV wrote: > >> Hello! >> >> Yes, what Chad says makes sense to me. >> >> >> I don't recall discussing a UI for the tag though. There is an >> API, if that helps y

[Wikitech-ambassadors] Tech News 2024, week 23

2024-06-03 Thread Nick Wilson (Quiddity)
alk:Tech/News> • Subscribe or unsubscribe <https://meta.wikimedia.org/wiki/Global_message_delivery/Targets/Tech_ambassadors>.* -- Nick "Quiddity" Wilson (he/him) Movement Communications Specialist Wikimedia Foundation ___ Wikitech-ambassadors mailing list -- wikitech-ambassadors@lists.wikimedia.org To unsubscribe send an email to wikitech-ambassadors-le...@lists.wikimedia.org

[Translators-l] Re: Tech News #23, 2024

2024-06-03 Thread Nick Wilson (Quiddity)
Thank you all for your help! It is deeply appreciated. The newsletter has now been delivered (in 18 languages) to 1,121 pages. ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wi

Re: [go-cd] Managing Pipeline Permissions for Multiple Pipeline Groups

2024-06-02 Thread Chad Wilson
In a previous setup we used the GoCD APIs triggered by a simple scripted curl-oriented pipeline within GoCD itself, similar to how Aravind suggests. In that specific case the "synchronize group permissions" pipeline was manually triggered by an admin on request, but there would have been different

[krdc] [Bug 485726] crash while scrolling

2024-06-01 Thread Alex Wilson
https://bugs.kde.org/show_bug.cgi?id=485726 Alex Wilson changed: What|Removed |Added CC||seaboy1...@gmail.com --- Comment #1 from Alex

Re: [go-cd] Assign Administrator Permissions to Role Without Manually Modifying cruise-config.xml

2024-06-01 Thread Chad Wilson
Interesting, had not noticed that limitation (didn't know you could assign a role to super-admin at all!). Personally I don't know a UI-driven way. Looks like it was vaguely discussed as part of https://github.com/gocd/gocd/issues/3712 but I cannot see that possibility to map that within the Role

Re: New photos on line

2024-05-31 Thread mike wilson
> On 01/06/2024 01:59 BST Mark Roberts wrote: > > > mike wilson wrote: > > >I think the sheep were probably Lisa's idea. Mark's more of a Llama type of > >guy. > > Doug Brewer and I have history with llamas. > Explains the bail money facil

[blink-dev] Intent to Extend Experiment: Tabbed web apps

2024-05-31 Thread Brett Wilson
Hi Blink owners, We would like to apply to extend the Tabbed web apps origin trial until November 26th, 2024. This API is already approved to ship in 126 (Intent to Ship thread

[Translators-l] Re: Tech News #23, 2024

2024-05-31 Thread Nick Wilson (Quiddity)
On Thu, May 30, 2024 at 6:28 PM Nick Wilson (Quiddity) < nwil...@wikimedia.org> wrote: > The latest tech newsletter is ready for early translation: > https://meta.wikimedia.org/wiki/Tech/News/2024/23 > > Direct translation link: > > https://meta.wikimedia.org/w/index.php

Re: New photos on line

2024-05-31 Thread mike wilson
I think the sheep were probably Lisa's idea. Mark's more of a Llama type of guy. > On 31/05/2024 21:35 BST Stan Halpin wrote: > > > Beautiful photos, beautiful country! And the sheep add a nice element in many > of the shots. Good planning to take them along with you. > Stan > Sent from my i

Re: New photos on line

2024-05-30 Thread mike wilson
Stunning stuff in the first one. I'm intrigued by the giant gatepost; amused by the stickers; flabbergasted by the final image of the glaciated landscape. The Cumbrian ones seem, in contrast, much more intimate. Especially with a Llama. BTW, I have a historian friend who reckons those circula

[Translators-l] Tech News #23, 2024

2024-05-30 Thread Nick Wilson (Quiddity)
u! -- Nick "Quiddity" Wilson (he/him) Movement Communications Specialist Wikimedia Foundation ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wikimedia.org

gnu: xkeyboard-config: Upgrade to 2.41.

2024-05-30 Thread B. Wilson
nge? From 9ed36ee6ea9479007108e696afa389d5030c2280 Mon Sep 17 00:00:00 2001 From: "B. Wilson" Date: Fri, 31 May 2024 08:58:07 +0900 Subject: [PATCH] gnu: xkeyboard-config: Upgrade to 2.41. * gnu/packages/xorg.scm (xkeyboard-config): Upgrade to 2.41. --- gnu/packages/xorg.scm | 6 +++--- 1 file changed, 3 insert

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-29 Thread Chad Wilson
vops repo and still get > the error > > > > On Tuesday 28 May 2024 at 23:20:32 UTC-4 Chad Wilson wrote: > >> From that error message it looks like it's using an empty username for >> some reason, rather than the dummy username you entered/expect. >> >&g

Re: [go-cd] Help in fixing exception on server

2024-05-29 Thread Chad Wilson
This is an issue coming from this 3rd party plugin you have installed: https://github.com/matic-insurance/gocd-http-notifications-plugin This plugin is not built by/supported within the core GoCD team. If you look at the GoCD Server log traces you should see clearly where the errors are coming fro

Re: ffmpeg6 drawtext option question

2024-05-29 Thread Michael Lowery Wilson
. On 28/05/24 at 08:40P, RVP wrote: On Tue, 28 May 2024, Michael Lowery Wilson wrote: However, I get the below result instead: [AVFilterGraph @ 0x7eb5fb57f580] No such filter: 'drawtext' [vost#0:0/libx264 @ 0x7eb5fb53a500] Error initializing a simple filtergraph Error opening o

Fw: Flubbed it in the second interation through the string: range error... HOW?

2024-05-28 Thread Kevin M. Wilson via Python-list
sweep over you. When you walk through the fire, you will not be burned: the flames will not set you ablaze."      Isaiah 43:2 - Forwarded Message - From: Kevin M. Wilson via Python-list To: python-list@python.org Sent: Tuesday, May 28, 2024 at 10:35:23 PM MDTSubject: Fl

Flubbed it in the second interation through the string: range error... HOW?

2024-05-28 Thread Kevin M. Wilson via Python-list
The following is my effort to understand how to process a string, letter, by letter: def myfunc(name):        index = 0    howmax = len(name)    # while (index <= howmax):    while (index < howmax):        if (index % 2 == 0):            print('letter to upper = {}, index {}!'.format(name[index]

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-28 Thread Chad Wilson
.azure.com/Taqauto/Migrate-Project-Test/_git/Migrate-Project-Test/' > > On Tuesday 28 May 2024 at 13:43:06 UTC-4 Chad Wilson wrote: > >> Try setting a dummy value for the username rather than leaving it blank. >> >> On Wed, 29 May 2024, 01:07 Obiageli Adegbite, wrot

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-28 Thread Chad Wilson
;> The next issue i'm getting is error message: Failed to run git clone >> command, the test connection is okay so this is strange. >> >> On Tuesday 28 May 2024 at 11:40:55 UTC-4 Chad Wilson wrote: >> >>> OK, that's good to hear. And yes, Azure DevOps seem

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-28 Thread Chad Wilson
ad abc@ as username:password thereby the error > message ambiguous credentials. When i used it like you did it works. > Thank you for all your help. > > > > On Tuesday 28 May 2024 at 10:40:39 UTC-4 Chad Wilson wrote: > >> > I tried without the username and password in the url

Re: [go-cd] How to configure git clean args?

2024-05-28 Thread Chad Wilson
karound at the moment. > > I figured it out, thanks a lot! > Alena > вторник, 28 мая 2024 г. в 13:18:19 UTC+3, Chad Wilson: > >> Hi Alena >> >> The default behaviour on GoCD git materials has been git clean -dffx >> since GoCD 20.6.0 as far as I can tell. You

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-28 Thread Chad Wilson
om/blah > <https://dummyusername:p...@dev.azure.com/blah> clone just fine. So puting > my username in the username slot an PAT in my password should work but it > seems GoCD is the error i got in pic3 when i did not use a username an > password shows GoCD is trying to use https://*

ffmpeg6 drawtext option question

2024-05-28 Thread Michael Lowery Wilson
Hello, I am trying to test adding timestamp to a recorded video using ffmpeg6 using the following: ffmpeg6 -i recording.mp4 -vf drawtext="fontsize=60:fontcolor=yellow:text='%{localtime}':x=(w-text_w):y=(h-text_h)" timestamped-recording.mp4 on uname -a NetBSD test.Home 10.0 NetBSD 10.0 (GE

Re: [go-cd] How to configure git clean args?

2024-05-28 Thread Chad Wilson
Hi Alena The default behaviour on GoCD git materials has been git clean -dffx since GoCD 20.6.0 as far as I can tell. You had to specifically opt in for the "old" behaviour of git clean -dff However based on the ticket you raised at https://github.com/gocd/gocd/issues/12806 my *guess* is that you

[Translators-l] Re: Tech News #22, 2024

2024-05-27 Thread Nick Wilson (Quiddity)
Thank you all for your help! It is deeply appreciated. The newsletter has now been delivered (in 18 languages) to 1,117 pages. ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wi

[Wikitech-ambassadors] Tech News 2024, week 22

2024-05-27 Thread Nick Wilson (Quiddity)
Latest *tech news * from the Wikimedia technical community. Please tell other users about these changes. Not all changes will affect you. Translations are available.

Re: [go-cd] Connecting Azure Repo to gocd version 19.8.0

2024-05-27 Thread Chad Wilson
The way GoCD constructs the URLs for Git materials requires both username and password to have non-empty values since all it does is just construct a URL using these values

[ovs-dev] [PATCH v2 1/1] datapath-windows : Add sanity check in OvsInitConntrack.

2024-05-26 Thread Wilson Peng via dev
From: Wilson Peng While deploying Tanzu Kubernetes(Antrea based solution) in Broadcom customer, Sometimes it is found that the kernel thread OvsConntrackEntryCleaner is not started After the Windows node is rebooted on unexpected condition. It could be also observed a similar issue in local

[ovs-dev] [PATCH v2 1/1] datapath-windows : Add sanity check in OvsInitConntrack.

2024-05-26 Thread Wilson Peng via dev
From: Wilson Peng While deploying Tanzu Kubernetes(Antrea based solution) in Broadcom customer, Sometimes it is found that the kernel thread OvsConntrackEntryCleaner is not started After the Windows node is rebooted on unexpected condition. It could be also observed a similar issue in local

[ovs-dev] [PATCH v1 1/1] datapath-windows : Add sanity check when starting OvsConntrackEntryCleaner thread

2024-05-25 Thread Wilson Peng via dev
From: Wilson Peng While deploying Tanzu Kubernetes(Antrea based solution) in Broadcom customer, Sometimes it is found that the kernel thread OvsConntrackEntryCleaner is not started After the Windows node is rebooted on unexpected condition. It could be also observed a similar issue in

Re: PDML UK 2024

2024-05-25 Thread mike wilson
Watched you take off on flightradar 24. Your text came through 10 minutes after you were off the ground. 8 -) > On 24/05/2024 21:24 BST Mark Roberts wrote: > > > We had the most amazing luck with the weather throughout our trip. > Getting rain-free days all through the week on Islay and almo

[Translators-l] Re: Tech News #22, 2024

2024-05-24 Thread Nick Wilson (Quiddity)
On Thu, May 23, 2024 at 5:51 PM Nick Wilson (Quiddity) < nwil...@wikimedia.org> wrote: > The latest tech newsletter is ready for early translation: > https://meta.wikimedia.org/wiki/Tech/News/2024/22 > > Direct translation link: > > https://meta.wikimedia.org/w/index.php

Re: PDML UK 2024

2024-05-24 Thread mike wilson
Terms noted and accepted. Will be in touch if the need arises. > On 23/05/2024 20:04 BST Doug Brewer wrote: > > > It was a thrill hearing your voice, Mike. Keep in mind that felonies are > out of my range. > > On 5/22/24 2:43 AM, mike wilson wrote: > >>

Re: [go-cd] Performance of popups in the gui

2024-05-23 Thread Chad Wilson
gt;> if we notice anything >> >> Am Mo., 13. Mai 2024 um 10:24 Uhr schrieb Chad Wilson < >> ch...@thoughtworks.com>: >> >>> Great to hear - back to how it was *supposed* to behave! I hope it >>> hasn't caused any other regressions 🙏 >>

[Translators-l] Tech News #22, 2024

2024-05-23 Thread Nick Wilson (Quiddity)
u! -- Nick "Quiddity" Wilson (he/him) Movement Communications Specialist Wikimedia Foundation ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wikimedia.org

[grpc-io] 📢 Important Update: gRPCConf 2024 CFP Deadline Extended!

2024-05-23 Thread 'Terry Wilson' via grpc.io
Dear gRPC Community, We're thrilled to announce that the Call for Proposals (CFP) deadline for gRPConf 2024 has been extended to May 29th, 2024! We've heard your feedback and want to give everyone more time to submit their talks. Whether you're a seasoned gRPC expert or a newcomer to the com

Re: Vulnurability Disclosure - How does it happen?

2024-05-23 Thread ';Ben Wilson' via dev-security-policy@mozilla.org
Amir, To answer the last question first, Chunghwa Telecom did not disclose this recent attack, but I don't think we have sufficient information from the article to determine the effects of the breach on the CA operations. So without more information, it might be premature to answer the question, "I

Re: Proposed whiteboard tag for non-incident "bugs"

2024-05-23 Thread ';Ben Wilson' via CCADB Public
d other descriptions of comprehensive steps a CA might take when addressing compliance, or cascading incidents, or to share its compliance-related experiences for the benefit of the ecosystem"), and I'll get this added somewhere on the CCADB website. Thanks, Ben On Wed, May 22, 2024 at 4:

Re: Hello from Carlisle!

2024-05-23 Thread mike wilson
Just been soaked by trying (and failing) to rescue the canvas roof of the gazebo which must have had in excess of 200lbs of water gathered in it. Managed to push it partway to the edge when rrriip and cold shower time. My ecological consultancy did work in Carlisle about a decade o

Re: [go-cd] GoCD Agent DinD Arm64 architecture

2024-05-23 Thread Chad Wilson
ild the source code per that required from > programming language. > > and also vulnerability scanning (sonarqube, dependency checker, OSV > scanner, ..) in our pipelines. > > Best Regards, > Komgrit > > On Sunday, May 19, 2024 at 7:21:41 PM UTC+7 Chad Wilson wrote: >

Re: Dlang club meeting Thu May 30 7pm at the Red Robin

2024-05-23 Thread Adam Wilson via Digitalmars-d-announce
On Monday, 20 May 2024 at 22:36:30 UTC, Walter Bright wrote: Given last month's successful conversion of a sand pile to an atomic pile, this #dlang meeting will be about resurrecting the lost technology of the Atomic Earth Blaster. Thu May 30 7pm at the Red Robin 2390 148th Ave NE, Redmond, WA

Re: Proposed whiteboard tag for non-incident "bugs"

2024-05-22 Thread 'Clint Wilson' via CCADB Public
Hi Rob, This incident is a valuable example for the ecosystem of the steps that may be necessary for a CA to take when approaching compliance and incidents comprehensively, especially when incidents spiral or cascade into the discovery of more underlying or systemic issues than at first appeara

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-22 Thread Neil Wilson
PR accepted upstream. I've backported the patch the oracular MP above. What needs to be done now to get this into an SRU for noble? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2040483 Title: AppA

Re: PDML UK 2024

2024-05-21 Thread mike wilson
> On 21/05/2024 20:49 BST Mark Roberts wrote: > > > Dr Lisa and I just had a great evening out with Mike and Kathy Wilson in > Carlisle. (No photos to post but I'll have some from the Lake District soon.) > The evening of food, drink and merriment concluded wi

[Translators-l] Re: Tech News #21, 2024

2024-05-20 Thread Nick Wilson (Quiddity)
Thank you all for your help! It is deeply appreciated. The newsletter has now been delivered (in 21 languages) to 1,116 pages. ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wi

[Wikitech-ambassadors] Tech News 2024, week 21

2024-05-20 Thread Nick Wilson (Quiddity)
Latest *tech news * from the Wikimedia technical community. Please tell other users about these changes. Not all changes will affect you. Translations are available.

[African Wikimedians] [Final Call] Wiki Loves Africa 2024 Images First Review - Final Call For Volunteers

2024-05-20 Thread Wilson Oluoha
Dear Friends, Thank you for a successful upload phase of the contest!!🙏 This is a call for volunteer Wikimedians who wish to be involved in the first review of images that were submitted to the global competition - Wiki Loves Africa in 2024.

Re: [go-cd] GoCD Agent DinD Arm64 architecture

2024-05-19 Thread Chad Wilson
No such thing is available right now - see https://github.com/gocd/gocd/issues/11355 The blocker right now is a sequence of issues: 1) Official Docker DIND images are all *Alpine-based*. GoCD extends these. 2) Alpine is *supposed to be* only used with musl libc, (not glibc, which software is often

Re: [go-cd] How to Configure Redundant LDAP Authorization?

2024-05-17 Thread Chad Wilson
/blob/a0236ed52cc95646f30c72a20360893c548c/src/main/java/cd/go/apacheds/ConnectionConfiguration.java Vs https://github.com/gocd/gocd-ldap-authorization-plugin/blob/master/src/main/java/com/thoughtworks/gocd/authorization/ldap/apacheds/ConnectionConfiguration.java -Chad On Sat, 18 May 2024, 11:03 Chad Wilson,

Re: [go-cd] How to Configure Redundant LDAP Authorization?

2024-05-17 Thread Chad Wilson
I discovered recently that the plugins are on an ancient version of the Apache LDAP library that means they don't actually seem to validate the server certs fully by default (e.g on expiry), so may not validate the hostname either. But that's probably a bug, not a feature? Your call if you want to

Re: [cabfpub] Voting Period Begins: Ballot FORUM-022: Establish Forum IPR Subcommittee

2024-05-17 Thread Clint Wilson via Public
Apple votes YES on FORUM-022. > On May 15, 2024, at 8:01 AM, Ben Wilson via Public > wrote: > > Ballot FORUM-022: Establish Forum IPR Subcommittee > > Proposed by Ben Wilson of Mozilla and endorsed by Roman Fischer of SwissSign > and Clint Wilson of Apple. > >

[Translators-l] Re: Tech News #21, 2024

2024-05-17 Thread Nick Wilson (Quiddity)
On Thu, May 16, 2024 at 5:05 PM Nick Wilson (Quiddity) < nwil...@wikimedia.org> wrote: > The latest tech newsletter is ready for early translation: > https://meta.wikimedia.org/wiki/Tech/News/2024/21 > > Direct translation link: > > https://meta.wikimedia.org/w/index.php

Re: [Servercert-wg] [External Sender] Discussion about single-purpose client authentication leaf certificates issued from a server TLS Issuing CA

2024-05-17 Thread Clint Wilson via Servercert-wg
gt; On 17 May 2024, at 11:22, Dimitris Zacharopoulos (HARICA) >> wrote: >> >> >> >> On 16/5/2024 10:29 μ.μ., Clint Wilson wrote: >>>> AFAIK Apple and Mozilla also don't have a specific "trust bit" for Client >>>> Authentication. O

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-17 Thread Neil Wilson
PR opened upstream: https://github.com/containers/common/pull/2004 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2040483 Title: AppArmor denies crun sending signals to containers (stop, kill) To ma

[Translators-l] Tech News #21, 2024

2024-05-16 Thread Nick Wilson (Quiddity)
u! -- Nick "Quiddity" Wilson (he/him) Movement Communications Specialist Wikimedia Foundation ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wikimedia.org

Re: [Servercert-wg] [External Sender] Discussion about single-purpose client authentication leaf certificates issued from a server TLS Issuing CA

2024-05-16 Thread Clint Wilson via Servercert-wg
> AFAIK Apple and Mozilla also don't have a specific "trust bit" for Client > Authentication. Only Microsoft does. FWIW, Apple does indeed have a specific trust bit for id-kp-clientAuth EKU and allows for (and ships) dedicated clientAuth Root CAs in the Apple Root Program (as outlined in 2.1.3

Re: [Servercert-wg] [External Sender] Discussion about single-purpose client authentication leaf certificates issued from a server TLS Issuing CA

2024-05-16 Thread Clint Wilson via Servercert-wg
> On May 16, 2024, at 1:19 AM, Dimitris Zacharopoulos (HARICA) > wrote: > > > > On 15/5/2024 11:07 μ.μ., Clint Wilson wrote: >> Hi Dimitris, >> >> I guess I’m confused about how this is relevant to the scope of the CA/BF as >> it seems quite ortho

[grpc-io] Re: Inquiry on Monitoring Deserialization Time of Protobuf Requests in gRPC

2024-05-16 Thread 'Terry Wilson' via grpc.io
This was also asked in https://github.com/grpc/grpc-java/issues/11217 and I've provided a reply there. On Sunday, May 12, 2024 at 5:32:51 AM UTC-7 YACHEN ZHANG wrote: > Dear Team, > > I am currently utilizing gRPC for our project and I have a specific > requirement that I need assistance with.

[Bug 2065685] Re: aa-logprof fails with 'runbindable' error

2024-05-16 Thread Neil Wilson
ubuntu@srv-9vqc0:~$ sudo grep -r "runbindable*/*" /etc/apparmor.d /etc/apparmor.d/abstractions/passt: mount options=(rw, runbindable) /, ubuntu@srv-9vqc0:~$ sudo aa-logprof ERROR: Operation {'runbindable'} cannot have a source. Source = AARE('/') HTH -- You received this bug notification bec

Re: [cabfpub] Voting Period Begins: Ballot FORUM-022: Establish Forum IPR Subcommittee

2024-05-16 Thread Ben Wilson via Public
Mozilla votes "Yes" on Forum-022, and I'll assume that is what was meant by Antti. On Thu, May 16, 2024 at 2:55 AM Backman, Antti < antti.back...@teliacompany.com> wrote: > Telia votes ’Yes’ on Ballot FORUM-002 > > > > //Antti > > > > *From: *Publi

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-16 Thread Neil Wilson
I've pushed the changes based on your comments to the MP above. I've left the signal set for podman as (int, quit, term, kill). Do you think that signal set should be tighter, or is that a good compromise? If that seems ok with you, I'll happily handle the PR upstream at GitHub. -- You received

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-16 Thread Neil Wilson
The debdiff is in the MP above. Podman does try to kill the container itself, as the error trace above testifies. May 14 11:14:41 srv-omzr6 kernel: audit: type=1400 audit(1715685281.392:118): apparmor="DENIED" operation="signal" class="signal" profile="containers-default-0.57.4" pid=7458 comm="co

Re: [blink-dev] Intent to Ship: Tabbed web apps

2024-05-15 Thread Brett Wilson
low in our priority list. While we >>>> can review patches, we will not be able to dedicate resources for >>>> consultation or maintenance. >>>> >>>> On Wed, May 8, 2024 at 9:19 AM Brett Wilson >>>> wrote: >>>> >>>&g

[African Wikimedians] Wiki Loves Africa 2024 First Review - Call For Volunteers

2024-05-15 Thread Wilson Oluoha
ol and the process will last for about 4hours max. The deadline to apply for this review group is 2*0th May 2024*. (Once we have the group in place, we will share more detail with successful reviewers via email.) Warm Regards -- *Wilson Oluoha* UTC+1 Skype: studywilson1106 | Telegram: @Wilsn

Re: OT Mac help

2024-05-15 Thread mike wilson
There's an aphorism about letting sleeping animals lie but I'm not sure it would be useful in this case. Maybe the one about teaching an old animal new tricks would be more apt? > On 15/05/2024 15:11 BST David J Brooks wrote: > > > I should add, its not always the case of the HD's not appea

[grpc-io] gRPC-Java v1.64.0 Released

2024-05-15 Thread 'Terry Wilson' via grpc.io
The v1.64.0 release of gRPC-Java is now available! API Changes - compiler: the option jakarta_omit was renamed @generated=omit (#11086 ) (8a21afc

Re: [Servercert-wg] [External Sender] Discussion about single-purpose client authentication leaf certificates issued from a server TLS Issuing CA

2024-05-15 Thread Clint Wilson via Servercert-wg
ths that include this certificate. > On May 15, 2024, at 11:56 AM, Dimitris Zacharopoulos (HARICA) > wrote: > > > > On 15/5/2024 7:27 μ.μ., Clint Wilson wrote: >> Apologies if I’m replying to the wrong thread, but I wanted to comment on >> one point here.

Re: [Servercert-wg] [External Sender] Discussion about single-purpose client authentication leaf certificates issued from a server TLS Issuing CA

2024-05-15 Thread Clint Wilson via Servercert-wg
Apologies if I’m replying to the wrong thread, but I wanted to comment on one point here. > On May 14, 2024, at 8:54 AM, Dimitris Zacharopoulos (HARICA) via > Servercert-wg wrote: > > > > On 14/5/2024 1:27 μ.μ., Adriano Santoni via Servercert-wg wrote: >> I would agree to consider out-of-sco

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-15 Thread Neil Wilson
Adding the podman signal line, and building a libpod that overrides the default packages eliminates the errors I was getting. All the tests in this ticket pass with the updated packages. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-15 Thread Neil Wilson
I've built a backported 4.9.4 libpod for noble based on an updated golang-github-containers-common including the above patch. It's available from ppa:brightbox/experimental -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-15 Thread Neil Wilson
The debdiff I've put together for oracular updates the patch to be a bit more general and cover all the signals I've seen so far in testing. (As well as dropping the other patch that has been incorporated upstream). # Allow certain signals from OCI runtimes (podman, runc and crun) signal (r

[cabfpub] Voting Period Begins: Ballot FORUM-022: Establish Forum IPR Subcommittee

2024-05-15 Thread Ben Wilson via Public
*Ballot FORUM-022: Establish Forum IPR Subcommittee* Proposed by Ben Wilson of Mozilla and endorsed by Roman Fischer of SwissSign and Clint Wilson of Apple. *Purpose of Ballot* The CA/Browser Forum’s Intellectual Property Rights (IPR) Policy and associated documentation were last revised

Re: [Goanet] SORROWING LIES OUR RIBANDAR

2024-05-15 Thread Wilson Coelho
Sorrowing lies the state of affairs of Goa. At the time if elections the so called candidates talk of development / ptigressnot understanding/realizing what actually development means. What one reads of smart City itself disgusting. Ultimately, who is responsible? Is it not the Voter? God sa

[cabfpub] Bergamo F2F Agenda Item

2024-05-14 Thread Ben Wilson via Public
Hi Dimitris, There appears to be an open slot on the F2F agenda - Wed. May 29th at 9:05 a.m. I was thinking we could use that time to discuss revocation timelines and balancing the security provided by revocation with the security/stability needed to support critical infrastructure. In other words

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-14 Thread Neil Wilson
The patch above doesn't work as it stands. We are still getting signal filters in the audit log May 14 11:13:06 srv-omzr6 kernel: audit: type=1400 audit(1715685186.296:112): apparmor="DENIED" operation="signal" class="signal" profile="containers-default-0.57.4" pid=8031 comm="3" requested_mask="

[Bug 2065685] [NEW] aa-logprof fails with 'runbindable' error

2024-05-14 Thread Neil Wilson
Public bug reported: On the latest LTS, aa-logprof does nothing other than fail with the error ERROR: Operation {'runbindable'} cannot have a source. Source = AARE('/') ProblemType: Bug DistroRelease: Ubuntu 24.04 Package: apparmor-utils 4.0.0-beta3-0ubuntu3 ProcVersionSignature: User Name 6

[Wikitech-ambassadors] Tech News 2024, week 20

2024-05-13 Thread Nick Wilson (Quiddity)
Latest *tech news * from the Wikimedia technical community. Please tell other users about these changes. Not all changes will affect you. Translations are available.

[Translators-l] Re: Tech News #20, 2024

2024-05-13 Thread Nick Wilson (Quiddity)
Thank you all for your help! It is deeply appreciated. The newsletter has now been delivered (in 18 languages) to 1,117 pages. ___ Translators-l mailing list -- translators-l@lists.wikimedia.org To unsubscribe send an email to translators-l-le...@lists.wi

[RBW] Re: Will the 50cm Susie be too small?

2024-05-13 Thread Aaron Wilson
You might want to compare the stack and reach of your bikes with the Susie, but you'll need to be careful. If you've added a lot of headset spacers (or a long quill stem) to your bikes to get them upright, that'll effectively increase their stack and decrease their reach (because of the angle of

[RBW] Re: Susie green color discrepancy

2024-05-13 Thread Aaron Wilson
Good catch. Not a lot of other sources for photos yet, but this Instagram post seems to have the ones from Riv's site. https://www.instagram.com/p/C66GqP7OwjN/?img_index=1 On Monday, May 13, 2024 at 1:33:45 PM UTC-6 jdura...@gmail.com wrote: > I'm curious about the DT shifter bosses. Differe

[Sprinklerforum] Re: Standpipe NFPA14 2019

2024-05-13 Thread Chris Wilson
Steve, Yes there is a hose connection at the first floor landing of the remote stand pipe. Yes there is access to occupied first floor space via the exit passage and the remote stairway. Thanks Christopher S. Wilson SET Project Design Manager Treasure Valley Fire Protection 2731 S. Saturn Way

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-13 Thread Neil Wilson
To move this on a bit more rapidly as it is a blocking issue for me. It's the same version in Oracular at present. I've pushed the changes as an MP against ubuntu/devel. What needs to happen next? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

[Bug 2040483] Re: AppArmor denies crun sending signals to containers (stop, kill)

2024-05-13 Thread Neil Wilson
** Merge proposal linked: https://code.launchpad.net/~neil-aldur/ubuntu/+source/golang-github-containers-common/+git/golang-github-containers-common/+merge/465970 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchp

<    1   2   3   4   5   6   7   8   9   10   >