Add: gemini management; Fix: gopher

This commit is contained in:
HUC Stéphane 2021-01-24 13:34:04 +01:00
parent efde61b026
commit d88627dfdd
Signed by: hucste
GPG Key ID: C4ED64222D9B037F
36 changed files with 256 additions and 180 deletions

View File

@ -48,7 +48,7 @@ uglyURLs = false
# URL structure
[permalinks]
posts = "/:year/:month/:day/:filename"
posts = "posts/:year/:month/:day/:filename"
categories = "/categories/:slug/"
tags = "/tags/:slug/"
@ -152,10 +152,17 @@ uglyURLs = false
isPlainText = true
isHTML = false
mediaType = "text/gemini"
name = "GEMTEXT"
name = "gemini"
path = "gemini/"
permalinkable = true
protocol = "gemini://"
[outputFormats.GeminiRSS]
isHTML = false
mediaType = "application/rss+xml"
name = "GeminiRSS"
protocol = "gemini://"
path = "gemini/"
# Gopher
[outputFormats.Gopher]
@ -178,8 +185,8 @@ uglyURLs = false
# Hugos output control
[outputs]
home = ["HTML", "gophermap", "SectionsAtom", "SectionsRSS", "SearchIndex"]
page = ["HTML", "gopher"]
home = ["HTML", "gemini", "GeminiRSS", "gophermap", "SectionsAtom", "SectionsRSS", "SearchIndex"]
page = ["HTML", "gemini", "gopher"]
section = ["HTML"]
taxonomy = ["HTML"]
term = ["HTML"]
@ -375,7 +382,7 @@ uglyURLs = false
homeLogoLink = "openbsd.fr.eu.org"
homeTitle = "OpenBSD Pour Tous"
homeMotto = "OpenBSD Pour Tous"
homeDescription = "Site de la communauté française autour d'OpenBSD"
homeDescription = "Site de la communauté francophone 'OpenBSD Pour Tous'"
homeKeywords = "OpenBSD,fr,France"
homeLinksDelimiter = ""
@ -386,7 +393,7 @@ uglyURLs = false
siteLogo = "/Puffy.svg"
# Note: used for JSON-LD, Open Graph
siteDescription = "OBSD4a : Site de la communauté française autour d'OpenBSD."
siteDescription = "OBSD4* : Site de la communauté francophone autour d'OpenBSD."
# Note: used for HTML head meta, JSON-LD,
# Open Graph, Atom, RSS

View File

@ -1,7 +1,13 @@
!{{ .Title }}
!{{ .Title | safeHTML }}
{{ .RawContent }}
{{ range .Paginator.Pages }}
0{{ .Title }} {{ with .OutputFormats.Get "gopher" -}}{{ .RelPermalink }} {{ $.Site.Params.hostname}} 70 {{ end }}
{{ end }}
---
Publié le : {{.Date.Format "2 January 2006"}}.
Le contenu de ce site est diffusé sous Licence {{ $.Site.Copyright | safeHTML }}.

View File

@ -0,0 +1,23 @@
# {{ $.Title | safeHTML }}
{{ $content := .RawContent -}}
{{ $content := $content | replaceRE "`(.+?)`" "$1" -}}
{{ $content := $content | replaceRE "`" "```" -}}
{{ $content := $content | replaceRE "\\*(.+?)\\*" "$1" -}}
{{ $content := $content | replaceRE "<br>" "" -}}
{{ $content }}
---
Publié le : {{.Date.Format "2 January 2006"}}.
⇒ Revenir à la page d'accueil : {{ .Site.BaseURL }} {{ with .OutputFormats.Get "html" }}
⇒ Lire l'article “{{ $.Title | safeHTML }}” sur le protocole HTTP(S) : {{.Permalink}}
{{- end }}
Le contenu de ce site est diffusé sous Licence {{ $.Site.Copyright | safeHTML }}.
---
{{ if .Next }}⇒ Article Suivant : "{{ .Next.Title | safeHTML }}" : {{ replace .Next.Permalink "/gemini" "" 1}} {{ end }}
{{ if .Prev -}}⇒ Article Précédent : "{{ .Prev.Title | safeHTML }}" : {{ replace .Prev.Permalink "/gemini" "" 1}} {{- end }}

View File

@ -1,13 +0,0 @@
# {{ $.Title | safeHTML }}
{{ trim (readFile (replace $.File.Path ".md" ".gmi")) "\n" | safeHTML }}
---
Publié le : {{.Date.Format "January 2, 2006"}}.
⇒ Revenir à la page d'accueil : {{ with .OutputFormats.Get "html" }}
⇒ Voir l'article {{.Permalink}} : “{{ $.Title | safeHTML }}” sur le grand net
{{- end }}
Le contenu de ce site est diffusé sous Licence {{ $.Copyright | safeHTML }}.

View File

@ -1,8 +1,26 @@
!{{ .Title }}
!{{ .Title | safeHTML }}
{{ .Date.Format (.Site.Params.dateform | default "01 January 2006") }} · {{ .ReadingTime }} minute(s) de lecture.
{{ if .Params.tags }}
Tags : {{ range .Params.tags }}{{ . }} {{ end }}
{{ end }}
---
{{ .RawContent }}
{{ $content := .RawContent -}}
{{ $content := $content | replaceRE "<br>" "" -}}
{{ $content }}
---
Publié le : {{.Date.Format "2 January 2006"}}.
0⇒ Revenir à la page d'accueil : / 70
h⇒ Lire l'article “{{ $.Title | safeHTML }}” sur le protocole HTTP(S) : {{ .Permalink | safeURL }} 443
Le contenu de ce site est diffusé sous Licence {{ $.Site.Copyright | safeHTML }}.
---
0{{ if .Next }}⇒ Article Suivant : "{{ .Next.Title | safeHTML }}" : {{ replace .Next.RelPermalink "https" "gopher" 1}} 70 {{ end }}
0{{ if .Prev -}}⇒ Article Précédent : "{{ .Prev.Title | safeHTML }}" : {{ replace .Prev.RelPermalink "https" "gopher" 1}} 70 {{- end }}

View File

@ -0,0 +1,45 @@
{{- $pctx := . -}}
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
{{- $pages := slice -}}
{{- if or $.IsHome $.IsSection -}}
{{- $pages = $pctx.RegularPages -}}
{{- else -}}
{{- $pages = $pctx.Pages -}}
{{- end -}}
{{- $limit := .Site.Config.Services.RSS.Limit -}}
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ .Site.Title | safeHTML }}</title>
<link>{{ replace .Permalink "https" "gemini" 1 }}</link>
<description>{{ .Site.Params.siteDescription | safeHTML }}</description>
<generator>Hugo {{ hugo.Version }} gohugo.io</generator>{{ with .Site.LanguageCode }}
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
{{ with .OutputFormats.Get "RSS" }}
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
{{ end }}
{{ range $pages }}
{{- if .OutputFormats.Get "gemini" -}}
<item>
<title>{{ .Title | safeHTML }}</title>
{{ with .OutputFormats.Get "gemini" }}
<link>{{replace .Permalink "/gemini" "" 1}}</link>
{{ end }}
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
{{ with .OutputFormats.Get "gemini" }}
<guid>{{replace .Permalink "/gemini" "" 1}}</guid>
{{ end }}
</item>
{{- end -}}
{{ end }}
</channel>
</rss>

View File

@ -1,12 +1,12 @@
La communauté francophone "{{ .Site.Title | safeHTML }}" vous propose la lecture des articles suivants :
## Blog posts
{{ range (where .Site.RegularPages "Section" "posts") }}
{{- if .OutputFormats.Get "gemtext" }}
{{- if .OutputFormats.Get "gemini" }}
⇒ {{ replace .Permalink "/gemini" "" 1 }} {{ .Date.Format "January 2, 2006" }}: {{ .Title | safeHTML }}{{ end }}{{ end }}
---
La communauté francophone "{{ .Site.Title | safeHTML }}" est disponible normalement sur le grand web :
La communauté francophone "{{ .Site.Title | safeHTML }}" est aussi disponible normalement sur le grand web :
- Site : {{ .Site.BaseURL }}
- Forum : https://forum.openbsd.fr.eu.org

View File

@ -1,6 +1,4 @@
! {{ .Title }}
{{ .RawContent }}
Bienvenue sur le site gopher de la communauté francophone "{{ .Site.Title | safeHTML }}" !
⇒ Menu :
@ -17,5 +15,5 @@ h{{ .Name }} {{ .URL | safeURL }} 443
⇒ Articles les plus récents :
{{ $nb := 7 }}
{{ range first $nb .Paginator.Pages }}
0{{ .Title }} {{ with .OutputFormats.Get "gopher" }} {{ .RelPermalink }} 70 {{ end }}
0{{ .Title }} {{ with .OutputFormats.Get "gopher" }} {{ replaceRE "/gopher" "" .RelPermalink }} 70 {{ end }}
{{- end }}

View File

@ -1,13 +0,0 @@
# {{ $.Title | safeHTML }}
{{ trim (readFile (replace $.File.Path ".md" ".gmi")) "\n" | safeHTML }}
---
Publié le : {{.Date.Format "January 2, 2006"}}.
⇒ Revenir à la page d'accueil : {{ with .OutputFormats.Get "html" }}
⇒ Voir l'article {{.Permalink}} : “{{ $.Title | safeHTML }}” sur le grand net
{{- end }}
Le contenu de ce site est diffusé sous Licence {{ $.Copyright | safeHTML }}.

View File

@ -14,7 +14,7 @@
<title>404 Page not found | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>

View File

@ -14,7 +14,7 @@
<title>À-propos… | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -54,7 +54,7 @@
"@context": "https://schema.org",
"@type": "WebPage",
"datePublished": "2020-12-09T12:16:58+01:00",
"dateModified": "2020-12-20T18:39:37+01:00",
"dateModified": "2021-01-23T14:10:51+01:00",
"url": "https://openbsd.fr.eu.org/about/",
"name": "À-propos…",
"description": "À-propos de la communauté française d'OpenBSD",
@ -235,7 +235,7 @@
<time datetime="2020-12-20T18:39:37&#43;01:00" class="post-meta-item modified dt-updated"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="icon post-meta-icon"><path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"/></svg>&nbsp;2020.12.20</time>
<time datetime="2021-01-23T14:10:51&#43;01:00" class="post-meta-item modified dt-updated"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="icon post-meta-icon"><path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"/></svg>&nbsp;2021.1.23</time>
@ -247,11 +247,11 @@
<span class="post-meta-item wordcount"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"/></svg>&nbsp;201</span>
<span class="post-meta-item wordcount"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"/></svg>&nbsp;217</span>
<span class="post-meta-item reading-time"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"/></svg>&nbsp;1&nbsp;min</span>
<span class="post-meta-item reading-time"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"/></svg>&nbsp;2&nbsp;min.</span>
@ -290,7 +290,12 @@ qui voudraient échanger des astuces à propos d'<a href="http://www.openbsd.org
<li>un <a href="https://wiki.openbsd.fr.eu.org/" target="_blank" rel="noopener">wiki</a> collaboratif - une documentation fournissant diverses
traductions dont celles du site OpenBSD, de ses différentes FAQ -
celle de PF et des Ports.</li>
<li>et d&rsquo;une <a href="/liste">liste de diffusion</a>.</li>
<li>une <a href="/liste">liste de diffusion</a>.</li>
</ul>
<p>Elle est également présente à travers :</p>
<ul>
<li>IRC : <strong>irc.freenode.net #obsd4*</strong></li>
<li>et sur le salon XMPP <strong>obsd4*@chat.jabberfr.org</strong>.</li>
</ul>
<h2 id="remerciements"><a href="#remerciements" class="anchor-link"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon anchor-icon"><path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"/></svg></a><a href="#contents:remerciements" class="headings">Remerciements</a></h2>
<p><a href="/donate">Merci</a> à toutes les personnes qui donnent de leur temps ou un peu d&rsquo;argent
@ -335,9 +340,9 @@ virtuelle louée chez <a href="https://openbsd.amsterdam/" target="_blank" rel="
<div class="updated-badge-container">
<span title="Updated @ 2020-12-20 18:39:37 CET" style="cursor:help">
<span title="Updated @ 2021-01-23 14:10:51 CET" style="cursor:help">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="20" class="updated-badge"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="130" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path class="updated-badge-left" d="M0 0h55v20H0z"/><path class="updated-badge-right" d="M55 0h75v20H55z"/><path fill="url(#b)" d="M0 0h130v20H0z"/></g><g fill="#fff" text-anchor="middle" font-size="110"><text x="285" y="150" fill="#010101" fill-opacity=".3" textLength="450" transform="scale(.1)">updated</text><text x="285" y="140" textLength="450" transform="scale(.1)">updated</text><text x="915" y="150" fill="#010101" fill-opacity=".3" textLength="650" transform="scale(.1)">2020-12-20</text><text x="915" y="140" textLength="650" transform="scale(.1)">2020-12-20</text></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="20" class="updated-badge"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="130" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path class="updated-badge-left" d="M0 0h55v20H0z"/><path class="updated-badge-right" d="M55 0h75v20H55z"/><path fill="url(#b)" d="M0 0h130v20H0z"/></g><g fill="#fff" text-anchor="middle" font-size="110"><text x="285" y="150" fill="#010101" fill-opacity=".3" textLength="450" transform="scale(.1)">updated</text><text x="285" y="140" textLength="450" transform="scale(.1)">updated</text><text x="915" y="150" fill="#010101" fill-opacity=".3" textLength="650" transform="scale(.1)">2021-01-23</text><text x="915" y="140" textLength="650" transform="scale(.1)">2021-01-23</text></g></svg>
</span></div>

View File

@ -4,7 +4,7 @@
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
<title type="text">OpenBSD Pour Tous 🐡</title>
<subtitle type="html">OBSD4a : Site de la communauté française autour d&#39;OpenBSD.</subtitle>
<updated>2021-01-14T19:29:50&#43;01:00</updated>
<updated>2021-01-24T13:30:11&#43;01:00</updated>
<id>https://openbsd.fr.eu.org/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/" />
<link rel="self" type="application/atom&#43;xml" href="https://openbsd.fr.eu.org/atom.xml" />
@ -18,8 +18,8 @@
<generator uri="https://gohugo.io/" version="0.80.0">Hugo</generator>
<entry>
<title type="text">Syspatch : carp (2021/01/13)</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/" />
<id>https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/" />
<id>https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/</id>
<updated>2021-01-13T20:06:30&#43;01:00</updated>
<published>2021-01-13T20:02:39&#43;01:00</published>
<author>
@ -37,7 +37,7 @@ le noyau.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -50,7 +50,7 @@ le noyau.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -89,7 +89,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -153,8 +153,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<entry>
<title type="text">Syspatch : NDP - IPv6 (2021/01/11)</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/" />
<id>https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/" />
<id>https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/</id>
<updated>2021-01-14T15:31:34&#43;01:00</updated>
<published>2021-01-11T15:05:12&#43;01:00</published>
<author>
@ -172,7 +172,7 @@ le noyau.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -185,7 +185,7 @@ le noyau.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -239,7 +239,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -309,8 +309,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<entry>
<title type="text">Syspatch : smptd (2020/12/23)</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/" />
<id>https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/" />
<id>https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/</id>
<updated>2021-01-04T15:39:26&#43;01:00</updated>
<published>2020-12-24T15:05:12&#43;01:00</published>
<author>
@ -327,7 +327,7 @@ ressources conduisant à un plantage&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -340,7 +340,7 @@ ressources conduisant à un plantage&lt;/strong&gt;.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -390,7 +390,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -454,8 +454,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<entry>
<title type="text">LibreSSL : 3.3.1, 3.2.3, 3.1.5</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" />
<id>https://openbsd.fr.eu.org/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" />
<id>https://openbsd.fr.eu.org/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</id>
<updated>2020-12-09T13:39:48&#43;01:00</updated>
<published>2020-12-09T13:23:17&#43;01:00</published>
<author>
@ -525,8 +525,8 @@ délivre trois nouvelles versions de LibreSSL.&lt;/p&gt;
<entry>
<title type="text">OpenNTPD 6.8p1</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2020/12/09/openntpd-6.8p1/" />
<id>https://openbsd.fr.eu.org/2020/12/09/openntpd-6.8p1/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2020/12/09/openntpd-6.8p1/" />
<id>https://openbsd.fr.eu.org/posts/2020/12/09/openntpd-6.8p1/</id>
<updated>2020-12-09T13:39:22&#43;01:00</updated>
<published>2020-12-09T13:13:58&#43;01:00</published>
<author>
@ -616,8 +616,8 @@ server, such as when there are network connectivity issues.&lt;/p&gt;
<entry>
<title type="text">Syspatch : asn.1, exit (2020/12/08)</title>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/2020/12/09/syspatch-asn1-exit/" />
<id>https://openbsd.fr.eu.org/2020/12/09/syspatch-asn1-exit/</id>
<link rel="alternate" type="text/html" href="https://openbsd.fr.eu.org/posts/2020/12/09/syspatch-asn1-exit/" />
<id>https://openbsd.fr.eu.org/posts/2020/12/09/syspatch-asn1-exit/</id>
<updated>2020-12-24T15:26:33&#43;01:00</updated>
<published>2020-12-09T12:51:50&#43;01:00</published>
<author>

View File

@ -14,7 +14,7 @@
<title>Categories | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -403,7 +403,7 @@
<ul class="list-posts">
<li>
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="category-post">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="category-post">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
</li>
@ -541,7 +541,7 @@
<ul class="list-posts">
<li>
<a href="/2020/12/09/openntpd-6.8p1/" class="category-post">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="category-post">OpenNTPD 6.8p1</a>
</li>
@ -682,19 +682,19 @@
<ul class="list-posts">
<li>
<a href="/2021/01/13/syspatch-carp-bpf/" class="category-post">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="category-post">Syspatch : carp (2021/01/13)</a>
</li>
<li>
<a href="/2021/01/11/syspatch-nd6/" class="category-post">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="category-post">Syspatch : NDP - IPv6 (2021/01/11)</a>
</li>
<li>
<a href="/2020/12/24/syspatch-smptd/" class="category-post">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="category-post">Syspatch : smptd (2020/12/23)</a>
</li>
<li>
<a href="/2020/12/09/syspatch-asn1-exit/" class="category-post">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="category-post">Syspatch : asn.1, exit (2020/12/08)</a>
</li>

View File

@ -14,7 +14,7 @@
<title>Categories: LibreSSL | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Categories: OpenNTPD | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<time datetime="2020-12-09T13:13:58&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Categories: Syspatch | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,12 +280,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<time datetime="2021-01-13T20:02:39&#43;01:00" class="list-item-time">January 13</time>
</li>
<li class="list-item">
<a href="/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<time datetime="2021-01-11T15:05:12&#43;01:00" class="list-item-time">January 11</time>
</li>
@ -340,12 +340,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<time datetime="2020-12-24T15:05:12&#43;01:00" class="list-item-time">December 24</time>
</li>
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Page de dons et remerciements | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>

View File

@ -14,7 +14,7 @@
<title>OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -218,7 +218,7 @@
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2021/01/13/syspatch-carp-bpf/" class="summary-title-link u-url">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="summary-title-link u-url">Syspatch : carp (2021/01/13)</a>
</h2>
@ -263,14 +263,14 @@ Pour toutes les architectures supportées :
</summary>
<div class="read-more-container">
<a href="/2021/01/13/syspatch-carp-bpf/" class="read-more-link">Lire Plus »</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="read-more-link">Lire Plus »</a>
</div>
</article>
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2021/01/11/syspatch-nd6/" class="summary-title-link u-url">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="summary-title-link u-url">Syspatch : NDP - IPv6 (2021/01/11)</a>
</h2>
@ -315,14 +315,14 @@ Pour toutes les architectures supportées :
</summary>
<div class="read-more-container">
<a href="/2021/01/11/syspatch-nd6/" class="read-more-link">Lire Plus »</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="read-more-link">Lire Plus »</a>
</div>
</article>
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2020/12/24/syspatch-smptd/" class="summary-title-link u-url">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="summary-title-link u-url">Syspatch : smptd (2020/12/23)</a>
</h2>
@ -367,14 +367,14 @@ Pour toutes les architectures supportées :
</summary>
<div class="read-more-container">
<a href="/2020/12/24/syspatch-smptd/" class="read-more-link">Lire Plus »</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="read-more-link">Lire Plus »</a>
</div>
</article>
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="summary-title-link u-url">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="summary-title-link u-url">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
</h2>
@ -421,7 +421,7 @@ Retrouvez les notes respectives de ces trois versions :
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2020/12/09/openntpd-6.8p1/" class="summary-title-link u-url">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="summary-title-link u-url">OpenNTPD 6.8p1</a>
</h2>
@ -465,14 +465,14 @@ Changelog The ntpd daemon now gets and sets the clock in a secure way when boo
</summary>
<div class="read-more-container">
<a href="/2020/12/09/openntpd-6.8p1/" class="read-more-link">Lire Plus »</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="read-more-link">Lire Plus »</a>
</div>
</article>
<article class="content post home h-entry">
<h2 class="post-title p-name">
<a href="/2020/12/09/syspatch-asn1-exit/" class="summary-title-link u-url">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="summary-title-link u-url">Syspatch : asn.1, exit (2020/12/08)</a>
</h2>
@ -515,7 +515,7 @@ Changelog The ntpd daemon now gets and sets the clock in a secure way when boo
</summary>
<div class="read-more-container">
<a href="/2020/12/09/syspatch-asn1-exit/" class="read-more-link">Lire Plus »</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="read-more-link">Lire Plus »</a>
</div>
</article>

View File

@ -14,7 +14,7 @@
<title>Liste de diffusion | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -54,7 +54,7 @@
"@context": "https://schema.org",
"@type": "WebPage",
"datePublished": "2020-12-09T12:41:03+01:00",
"dateModified": "2020-12-09T12:45:19+01:00",
"dateModified": "2021-01-23T14:02:32+01:00",
"url": "https://openbsd.fr.eu.org/liste/",
"name": "Liste de diffusion",
"description": "Liste de diffusion de la communauté OBSD4a - OpenBSD Pour Tous",
@ -235,7 +235,7 @@
<time datetime="2020-12-09T12:45:19&#43;01:00" class="post-meta-item modified dt-updated"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="icon post-meta-icon"><path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"/></svg>&nbsp;2020.12.9</time>
<time datetime="2021-01-23T14:02:32&#43;01:00" class="post-meta-item modified dt-updated"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="icon post-meta-icon"><path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"/></svg>&nbsp;2021.1.23</time>
@ -247,7 +247,7 @@
<span class="post-meta-item wordcount"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"/></svg>&nbsp;162</span>
<span class="post-meta-item wordcount"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="icon post-meta-icon"><path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"/></svg>&nbsp;165</span>
@ -280,10 +280,10 @@ qui y sont postés, envoyez un message à <a href="mailto:blabla+subscribe@openb
Peu importe le sujet choisi.</li>
<li>Les messages envoyés sur la liste sont gardés en copie pour consultation
et recherche ultérieure. Les archives sont <a href="https://openbsd.fr.eu.org/blabla/" target="_blank" rel="noopener">publiques et disponibles ici</a>.
Les messages sont synchronisés toutes les heures.</li>
Les messages sont synchronisés tous les jours, à une heure fixe.</li>
<li>Pour ne plus recevoir les messages de la liste, envoyez un message à
l&rsquo;adresse <a href="mailto:blabla+unsubscribe@openbsd.fr.eu.org">blabla+unsubscribe@openbsd.fr.eu.org</a>.</li>
<li>Le serveur utilise spamd avec le greylisting, un délai est possible
<li>Le serveur utilise Rspamd pour l&rsquo;anti-spam, un délai est possible
avant que votre message ne soit publié.</li>
</ul>
<hr>
@ -315,9 +315,9 @@ avant que votre message ne soit publié.</li>
<div class="updated-badge-container">
<span title="Updated @ 2020-12-09 12:45:19 CET" style="cursor:help">
<span title="Updated @ 2021-01-23 14:02:32 CET" style="cursor:help">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="20" class="updated-badge"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="130" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path class="updated-badge-left" d="M0 0h55v20H0z"/><path class="updated-badge-right" d="M55 0h75v20H55z"/><path fill="url(#b)" d="M0 0h130v20H0z"/></g><g fill="#fff" text-anchor="middle" font-size="110"><text x="285" y="150" fill="#010101" fill-opacity=".3" textLength="450" transform="scale(.1)">updated</text><text x="285" y="140" textLength="450" transform="scale(.1)">updated</text><text x="915" y="150" fill="#010101" fill-opacity=".3" textLength="650" transform="scale(.1)">2020-12-09</text><text x="915" y="140" textLength="650" transform="scale(.1)">2020-12-09</text></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="20" class="updated-badge"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="130" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path class="updated-badge-left" d="M0 0h55v20H0z"/><path class="updated-badge-right" d="M55 0h75v20H55z"/><path fill="url(#b)" d="M0 0h130v20H0z"/></g><g fill="#fff" text-anchor="middle" font-size="110"><text x="285" y="150" fill="#010101" fill-opacity=".3" textLength="450" transform="scale(.1)">updated</text><text x="285" y="140" textLength="450" transform="scale(.1)">updated</text><text x="915" y="150" fill="#010101" fill-opacity=".3" textLength="650" transform="scale(.1)">2021-01-23</text><text x="915" y="140" textLength="650" transform="scale(.1)">2021-01-23</text></g></svg>
</span></div>

View File

@ -14,7 +14,7 @@
<title>Posts | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -313,12 +313,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<time datetime="2021-01-13T20:02:39&#43;01:00" class="list-item-time">January 13</time>
</li>
<li class="list-item">
<a href="/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<time datetime="2021-01-11T15:05:12&#43;01:00" class="list-item-time">January 11</time>
</li>
@ -373,22 +373,22 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<time datetime="2020-12-24T15:05:12&#43;01:00" class="list-item-time">December 24</time>
</li>
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>
<li class="list-item">
<a href="/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<time datetime="2020-12-09T13:13:58&#43;01:00" class="list-item-time">December 9</time>
</li>
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -23,15 +23,15 @@
<copyright>[CC 0](https://creativecommons.org/publicdomain/zero/1.0/deed.fr)</copyright>
<lastBuildDate>Thu, 14 Jan 2021 19:29:50 &#43;0100</lastBuildDate>
<lastBuildDate>Sun, 24 Jan 2021 13:30:11 &#43;0100</lastBuildDate>
<atom:link rel="self" type="application/rss&#43;xml" href="https://openbsd.fr.eu.org/rss.xml" />
<item>
<title>Syspatch : carp (2021/01/13)</title>
<link>https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/</guid>
<link>https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/</guid>
<pubDate>Wed, 13 Jan 2021 20:02:39 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>
@ -46,7 +46,7 @@ le noyau.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -59,7 +59,7 @@ le noyau.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -98,7 +98,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -162,8 +162,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<item>
<title>Syspatch : NDP - IPv6 (2021/01/11)</title>
<link>https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/</guid>
<link>https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/</guid>
<pubDate>Mon, 11 Jan 2021 15:05:12 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>
@ -178,7 +178,7 @@ le noyau.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -191,7 +191,7 @@ le noyau.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -245,7 +245,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/#restart&#34;&gt;redémarrez&lt;/a&gt; la machine !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -315,8 +315,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<item>
<title>Syspatch : smptd (2020/12/23)</title>
<link>https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/</guid>
<link>https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/</guid>
<pubDate>Thu, 24 Dec 2020 15:05:12 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>
@ -330,7 +330,7 @@ ressources conduisant à un plantage&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Pour toutes les architectures supportées :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;amd64, arm64, i386 par &lt;code&gt;syspatch&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;armv7, hppa, landisk, loongson, luna88k, macppc, sparc64 par &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#recompilation&#34;&gt;recompilation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id=&#34;syspatch&#34;&gt;Syspatch&lt;/h2&gt;
@ -343,7 +343,7 @@ ressources conduisant à un plantage&lt;/strong&gt;.&lt;/p&gt;
&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ksh&#34; data-lang=&#34;ksh&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# syspatch&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Ensuite &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;h2 id=&#34;recompilation&#34;&gt;Recompilation&lt;/h2&gt;
&lt;p&gt;Pour toute autre architecture prise en charge par le projet OpenBSD, voici
les étapes de recompilation nécessaires :&lt;/p&gt;
@ -393,7 +393,7 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
&lt;span class=&#34;c1&#34;&gt;# make install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;Pour finir, &lt;a href=&#34;https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/#restart&#34;&gt;redémarrez&lt;/a&gt; le service !&lt;/p&gt;
&lt;h2 id=&#34;restart&#34;&gt;Restart&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
@ -457,8 +457,8 @@ les étapes de recompilation nécessaires :&lt;/p&gt;
<item>
<title>LibreSSL : 3.3.1, 3.2.3, 3.1.5</title>
<link>https://openbsd.fr.eu.org/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</guid>
<link>https://openbsd.fr.eu.org/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</guid>
<pubDate>Wed, 09 Dec 2020 13:23:17 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>
@ -525,8 +525,8 @@ délivre trois nouvelles versions de LibreSSL.&lt;/p&gt;
<item>
<title>OpenNTPD 6.8p1</title>
<link>https://openbsd.fr.eu.org/2020/12/09/openntpd-6.8p1/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2020/12/09/openntpd-6.8p1/</guid>
<link>https://openbsd.fr.eu.org/posts/2020/12/09/openntpd-6.8p1/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2020/12/09/openntpd-6.8p1/</guid>
<pubDate>Wed, 09 Dec 2020 13:13:58 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>
@ -613,8 +613,8 @@ server, such as when there are network connectivity issues.&lt;/p&gt;
<item>
<title>Syspatch : asn.1, exit (2020/12/08)</title>
<link>https://openbsd.fr.eu.org/2020/12/09/syspatch-asn1-exit/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/2020/12/09/syspatch-asn1-exit/</guid>
<link>https://openbsd.fr.eu.org/posts/2020/12/09/syspatch-asn1-exit/</link>
<guid isPermaLink="true">https://openbsd.fr.eu.org/posts/2020/12/09/syspatch-asn1-exit/</guid>
<pubDate>Wed, 09 Dec 2020 12:51:50 &#43;0100</pubDate>
<author>puffy@openbsd.fr.eu.org (OBSD4a)</author>

File diff suppressed because one or more lines are too long

View File

@ -43,7 +43,7 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2021/01/13/syspatch-carp-bpf/</loc>
<loc>https://openbsd.fr.eu.org/posts/2021/01/13/syspatch-carp-bpf/</loc>
<lastmod>2021-01-13T20:06:30+01:00</lastmod>
</url>
@ -68,7 +68,7 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2021/01/11/syspatch-nd6/</loc>
<loc>https://openbsd.fr.eu.org/posts/2021/01/11/syspatch-nd6/</loc>
<lastmod>2021-01-14T15:31:34+01:00</lastmod>
</url>
@ -78,7 +78,7 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2020/12/24/syspatch-smptd/</loc>
<loc>https://openbsd.fr.eu.org/posts/2020/12/24/syspatch-smptd/</loc>
<lastmod>2021-01-04T15:39:26+01:00</lastmod>
</url>
@ -108,7 +108,7 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</loc>
<loc>https://openbsd.fr.eu.org/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/</loc>
<lastmod>2020-12-09T13:39:48+01:00</lastmod>
</url>
@ -123,7 +123,7 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2020/12/09/openntpd-6.8p1/</loc>
<loc>https://openbsd.fr.eu.org/posts/2020/12/09/openntpd-6.8p1/</loc>
<lastmod>2020-12-09T13:39:22+01:00</lastmod>
</url>
@ -138,13 +138,13 @@
</url>
<url>
<loc>https://openbsd.fr.eu.org/2020/12/09/syspatch-asn1-exit/</loc>
<loc>https://openbsd.fr.eu.org/posts/2020/12/09/syspatch-asn1-exit/</loc>
<lastmod>2020-12-24T15:26:33+01:00</lastmod>
</url>
<url>
<loc>https://openbsd.fr.eu.org/liste/</loc>
<lastmod>2020-12-09T12:45:19+01:00</lastmod>
<lastmod>2021-01-23T14:02:32+01:00</lastmod>
</url>
<url>
@ -154,7 +154,7 @@
<url>
<loc>https://openbsd.fr.eu.org/about/</loc>
<lastmod>2020-12-20T18:39:37+01:00</lastmod>
<lastmod>2021-01-23T14:10:51+01:00</lastmod>
</url>
</urlset>

View File

@ -14,7 +14,7 @@
<title>Tags: 3.1 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: 3.2 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: 3.3 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: 6.7 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<time datetime="2021-01-11T15:05:12&#43;01:00" class="list-item-time">January 11</time>
</li>
@ -335,12 +335,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<time datetime="2020-12-24T15:05:12&#43;01:00" class="list-item-time">December 24</time>
</li>
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: 6.8 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,12 +280,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<time datetime="2021-01-13T20:02:39&#43;01:00" class="list-item-time">January 13</time>
</li>
<li class="list-item">
<a href="/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<time datetime="2021-01-11T15:05:12&#43;01:00" class="list-item-time">January 11</time>
</li>
@ -340,17 +340,17 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<time datetime="2020-12-24T15:05:12&#43;01:00" class="list-item-time">December 24</time>
</li>
<li class="list-item">
<a href="/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<time datetime="2020-12-09T13:13:58&#43;01:00" class="list-item-time">December 9</time>
</li>
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: asn.1 | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: exit | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>

View File

@ -14,7 +14,7 @@
<title>Tags: LibreSSL | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<a href="/posts/2020/12/09/libressl-3.3.1-3.2.3-3.1.5/" class="list-item-title">LibreSSL : 3.3.1, 3.2.3, 3.1.5</a>
<time datetime="2020-12-09T13:23:17&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: OpenNTPD | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,7 +280,7 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<a href="/posts/2020/12/09/openntpd-6.8p1/" class="list-item-title">OpenNTPD 6.8p1</a>
<time datetime="2020-12-09T13:13:58&#43;01:00" class="list-item-time">December 9</time>
</li>

View File

@ -14,7 +14,7 @@
<title>Tags: Syspatch | OpenBSD Pour Tous 🐡</title>
<link rel="stylesheet" href="/css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css"/>
<link rel="stylesheet" href="/css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css"/>
@ -280,12 +280,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<a href="/posts/2021/01/13/syspatch-carp-bpf/" class="list-item-title">Syspatch : carp (2021/01/13)</a>
<time datetime="2021-01-13T20:02:39&#43;01:00" class="list-item-time">January 13</time>
</li>
<li class="list-item">
<a href="/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<a href="/posts/2021/01/11/syspatch-nd6/" class="list-item-title">Syspatch : NDP - IPv6 (2021/01/11)</a>
<time datetime="2021-01-11T15:05:12&#43;01:00" class="list-item-time">January 11</time>
</li>
@ -340,12 +340,12 @@
<ul class="list-part">
<li class="list-item">
<a href="/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<a href="/posts/2020/12/24/syspatch-smptd/" class="list-item-title">Syspatch : smptd (2020/12/23)</a>
<time datetime="2020-12-24T15:05:12&#43;01:00" class="list-item-time">December 24</time>
</li>
<li class="list-item">
<a href="/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<a href="/posts/2020/12/09/syspatch-asn1-exit/" class="list-item-title">Syspatch : asn.1, exit (2020/12/08)</a>
<time datetime="2020-12-09T12:51:50&#43;01:00" class="list-item-time">December 9</time>
</li>

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"Target":"css/meme.min.4e41eb904dbe11f73273ea1fd9cccd132e06223c019b2e743f0b4f6ce3195f83.css","MediaType":"text/css","Data":{"Integrity":"sha256-TkHrkE2+Efcyc+of2czNEy4GIjwBmy50PwtPbOMZX4M="}}
{"Target":"css/meme.min.b5bcd0896c06119f43e722909b2706acbf3b20e5d90e78967716600bfddd51a1.css","MediaType":"text/css","Data":{"Integrity":"sha256-tbzQiWwGEZ9D5yKQmycGrL87IOXZDniWdxZgC/3dUaE="}}