Certbot failing

2024-09-09 Thread Patrick O'Callaghan
I've been using Certbot for my personal website for some time, but started getting errors in the journal. A manual invocation produced this: Certbot failed to authenticate some domains (authenticator: apache). The Certificate Authority reported these problems: Domain: bree.org.uk T

Re: Certbot failing

2024-09-09 Thread Markus Schönhaber
09.09.24, 13:37 +0200, Patrick O'Callaghan: > I've been using Certbot for my personal website for some time, but > started getting errors in the journal. A manual invocation produced > this: > >Certbot failed to authenticate some domains (authenticator: apache). >The Certificate Authority

Re: I need grep . help

2024-09-09 Thread Barry Scott
> On 9 Sep 2024, at 02:10, ToddAndMargo via users > wrote: > > I am literally looking for "9.4.5" with grep. Grep thinks > I want the dots to be wild cards. What am I doing wrong? grep is means g/re/p - global regex search and print, a command in "ed" I think. So its always a regex that yo

Re: Certbot failing

2024-09-09 Thread Patrick O'Callaghan
On Mon, 2024-09-09 at 14:01 +0200, Markus Schönhaber wrote: > 09.09.24, 13:37 +0200, Patrick O'Callaghan: > > > I've been using Certbot for my personal website for some time, but > > started getting errors in the journal. A manual invocation produced > > this: > > > >Certbot failed to authent

Re: I need grep . help

2024-09-09 Thread home user via users
On 9/8/24 8:36 PM, ToddAndMargo via users wrote: On 9/8/24 18:51, home user via users wrote: Are you looking for "9.4.4" or "9.4.5"? Aw poop!  yes 9.4.4 Still can't get it to work though Now I don't understand! In "grep" with no command line options (or at least no "-F" option) and no esc

Re: I need grep . help

2024-09-09 Thread Todd Zullinger
ToddAndMargo via users wrote: > Hi All, > > I am literally looking for "9.4.5" with grep. Grep thinks > I want the dots to be wild cards. What am I doing wrong? > > $ curl -L "https://sourceforge.net/projects/crystaldiskinfo/files/"; -o - | > grep -i '9.4.5' To take another tangent, the curl `

Re: I need grep . help

2024-09-09 Thread Samuel Sieb
On 9/9/24 9:55 AM, home user via users wrote: On 9/8/24 8:36 PM, ToddAndMargo via users wrote: On 9/8/24 18:51, home user via users wrote: Are you looking for "9.4.4" or "9.4.5"? Aw poop!  yes 9.4.4 Still can't get it to work though Now I don't understand! In "grep" with no command line o

Re: I need grep . help

2024-09-09 Thread home user via users
On 9/9/24 11:35 AM, Samuel Sieb wrote: On 9/9/24 9:55 AM, home user via users wrote: On 9/8/24 8:36 PM, ToddAndMargo via users wrote: On 9/8/24 18:51, home user via users wrote: Are you looking for "9.4.4" or "9.4.5"? Aw poop!  yes 9.4.4 Still can't get it to work though Now I don't under

Re: I need grep . help

2024-09-09 Thread Bill Oliver
The escape works only if you include everything in quotes, in my experience, e.g. cat jnk: 9.1.2 9n4n4 9.4.4 9.3.3 grep 9\.4\.4 jnk: 9n4n4 9.4.4 grep "9.4.4" jnk: 9n4n4 9.4.4 grep "9\.4\.4" jnk: 9.4.4 billo On Sun, 2024-09-08 at 18:13 -0700, Samuel Sieb wrote: > On 9/8/24 6:10 PM,

Re: I need grep . help

2024-09-09 Thread Samuel Sieb
On 9/9/24 1:01 PM, Bill Oliver wrote: The escape works only if you include everything in quotes, in my experience, e.g. Yes, which is why I put single quotes in my answer, although I see that double quotes work too. The original question was already using quotes anyway. On Sun, 2024-09-0

Re: I need grep . help

2024-09-09 Thread Barry
> On 9 Sep 2024, at 21:02, Bill Oliver wrote: > > The escape works only if you include everything in quotes, in my > experience, e.g. Outside of quotes double up the \ like this 1\\.2\\.3 Barry -- ___ users mailing list -- users@lists.fedoraproject

Re: I need grep . help

2024-09-09 Thread William Oliver
On Mon, 2024-09-09 at 13:24 -0700, Samuel Sieb wrote: > On 9/9/24 1:01 PM, Bill Oliver wrote: > > > > The escape works only if you include everything in quotes, in my > > experience, e.g. > > Yes, which is why I put single quotes in my answer, although I see > that > double quotes work too.  The

Re: I need grep . help

2024-09-09 Thread Jon LaBadie
On Mon, Sep 09, 2024 at 01:34:55PM -0600, home user via users wrote: On 9/9/24 11:35 AM, Samuel Sieb wrote: On 9/9/24 9:55 AM, home user via users wrote: On 9/8/24 8:36 PM, ToddAndMargo via users wrote: On 9/8/24 18:51, home user via users wrote: Are you looking for "9.4.4" or "9.4.5"? Aw

Re: I need grep . help

2024-09-09 Thread Samuel Sieb
On 9/9/24 7:32 PM, Jon LaBadie wrote: On Mon, Sep 09, 2024 at 01:34:55PM -0600, home user via users wrote: On 9/9/24 11:35 AM, Samuel Sieb wrote: On 9/9/24 9:55 AM, home user via users wrote: On 9/8/24 8:36 PM, ToddAndMargo via users wrote: On 9/8/24 18:51, home user via users wrote: Are yo