Skip to content

Commit d364fe6

Browse files
committed
render from publish.sh - Tue May 7 10:37:28 PM UTC 2024 - ada7ae4d91791e8ed0a75ff58f3a9843decfb57b
1 parent 27a0fb8 commit d364fe6

14 files changed

Lines changed: 21 additions & 14 deletions

File tree

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 56f6f4f8f112cfdea1815b3bf845fc1a
3+
config: 97c2abc4d38e25e73427705abe27b92e
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/installation/apt-repos.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Please open an issue in on GitHub if you encounter any issues with the repositor
2727
ARCH="$(dpkg --print-architecture)"
2828
CODENAME="$(lsb_release -i -s | tr '[:upper:]' '[:lower:]') $(lsb_release -c -s | tr '[:upper:]' '[:lower:]')"
2929
echo "Using Distro and Codename: $CODENAME"
30-
echo "deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main" | sudo tee /etc/apt/sources.list.d/zrepl.list
30+
echo "deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main" | sudo tee "$zrepl_apt_repo_file" > /dev/null
3131

3232
# Update apt repos.
3333
sudo apt update

installation/apt-repos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
<span class="n">ARCH</span><span class="o">=</span><span class="s2">&quot;$(dpkg --print-architecture)&quot;</span>
116116
<span class="n">CODENAME</span><span class="o">=</span><span class="s2">&quot;$(lsb_release -i -s | tr &#39;[:upper:]&#39; &#39;[:lower:]&#39;) $(lsb_release -c -s | tr &#39;[:upper:]&#39; &#39;[:lower:]&#39;)&quot;</span>
117117
<span class="n">echo</span> <span class="s2">&quot;Using Distro and Codename: $CODENAME&quot;</span>
118-
<span class="n">echo</span> <span class="s2">&quot;deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main&quot;</span> <span class="o">|</span> <span class="n">sudo</span> <span class="n">tee</span> <span class="o">/</span><span class="n">etc</span><span class="o">/</span><span class="n">apt</span><span class="o">/</span><span class="n">sources</span><span class="o">.</span><span class="n">list</span><span class="o">.</span><span class="n">d</span><span class="o">/</span><span class="n">zrepl</span><span class="o">.</span><span class="n">list</span>
118+
<span class="n">echo</span> <span class="s2">&quot;deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main&quot;</span> <span class="o">|</span> <span class="n">sudo</span> <span class="n">tee</span> <span class="s2">&quot;$zrepl_apt_repo_file&quot;</span> <span class="o">&gt;</span> <span class="o">/</span><span class="n">dev</span><span class="o">/</span><span class="n">null</span>
119119

120120
<span class="c1"># Update apt repos.</span>
121121
<span class="n">sudo</span> <span class="n">apt</span> <span class="n">update</span>

master/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 0993b11edab4e6ce96a38838506a5346
3+
config: 7064b188341844223d6cc85df44fea07
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

master/_sources/configuration/overview.rst.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ The following high-level steps take place during replication and can be monitore
130130
* Move the **replication cursor** bookmark on the sending side (see below).
131131
* Move the **last-received-hold** on the receiving side (see below).
132132
* Release the send-side step-holds.
133-
133+
134134
The idea behind the execution order of replication steps is that if the sender snapshots all filesystems simultaneously at fixed intervals, the receiver will have all filesystems snapshotted at time ``T1`` before the first snapshot at ``T2 = T1 + $interval`` is replicated.
135135

136136
ZFS Background Knowledge
@@ -258,6 +258,9 @@ On your setup, ensure that
258258

259259
* all ``filesystems`` filter specifications are disjoint
260260
* no ``root_fs`` is a prefix or equal to another ``root_fs``
261+
262+
* For ``sink`` jobs, consider all possible ``root_fs/${client_identity}``.
263+
261264
* no ``filesystems`` filter matches any ``root_fs``
262265

263266
**Exceptions to the rule**:

master/_sources/installation/apt-repos.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Please open an issue in on GitHub if you encounter any issues with the repositor
2727
ARCH="$(dpkg --print-architecture)"
2828
CODENAME="$(lsb_release -i -s | tr '[:upper:]' '[:lower:]') $(lsb_release -c -s | tr '[:upper:]' '[:lower:]')"
2929
echo "Using Distro and Codename: $CODENAME"
30-
echo "deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main" | sudo tee /etc/apt/sources.list.d/zrepl.list
30+
echo "deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main" | sudo tee "$zrepl_apt_repo_file" > /dev/null
3131

3232
# Update apt repos.
3333
sudo apt update

master/configuration/overview.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,11 @@ <h3>Multiple Jobs on One Machine<a class="headerlink" href="#multiple-jobs-on-on
385385
<p>On your setup, ensure that</p>
386386
<ul class="simple">
387387
<li><p>all <code class="docutils literal notranslate"><span class="pre">filesystems</span></code> filter specifications are disjoint</p></li>
388-
<li><p>no <code class="docutils literal notranslate"><span class="pre">root_fs</span></code> is a prefix or equal to another <code class="docutils literal notranslate"><span class="pre">root_fs</span></code></p></li>
388+
<li><p>no <code class="docutils literal notranslate"><span class="pre">root_fs</span></code> is a prefix or equal to another <code class="docutils literal notranslate"><span class="pre">root_fs</span></code></p>
389+
<ul>
390+
<li><p>For <code class="docutils literal notranslate"><span class="pre">sink</span></code> jobs, consider all possible <code class="docutils literal notranslate"><span class="pre">root_fs/${client_identity}</span></code>.</p></li>
391+
</ul>
392+
</li>
389393
<li><p>no <code class="docutils literal notranslate"><span class="pre">filesystems</span></code> filter matches any <code class="docutils literal notranslate"><span class="pre">root_fs</span></code></p></li>
390394
</ul>
391395
<p><strong>Exceptions to the rule</strong>:</p>

master/installation/apt-repos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
<span class="n">ARCH</span><span class="o">=</span><span class="s2">&quot;$(dpkg --print-architecture)&quot;</span>
125125
<span class="n">CODENAME</span><span class="o">=</span><span class="s2">&quot;$(lsb_release -i -s | tr &#39;[:upper:]&#39; &#39;[:lower:]&#39;) $(lsb_release -c -s | tr &#39;[:upper:]&#39; &#39;[:lower:]&#39;)&quot;</span>
126126
<span class="n">echo</span> <span class="s2">&quot;Using Distro and Codename: $CODENAME&quot;</span>
127-
<span class="n">echo</span> <span class="s2">&quot;deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main&quot;</span> <span class="o">|</span> <span class="n">sudo</span> <span class="n">tee</span> <span class="o">/</span><span class="n">etc</span><span class="o">/</span><span class="n">apt</span><span class="o">/</span><span class="n">sources</span><span class="o">.</span><span class="n">list</span><span class="o">.</span><span class="n">d</span><span class="o">/</span><span class="n">zrepl</span><span class="o">.</span><span class="n">list</span>
127+
<span class="n">echo</span> <span class="s2">&quot;deb [arch=$ARCH signed-by=$zrepl_apt_key_dst] https://zrepl.cschwarz.com/apt/$CODENAME main&quot;</span> <span class="o">|</span> <span class="n">sudo</span> <span class="n">tee</span> <span class="s2">&quot;$zrepl_apt_repo_file&quot;</span> <span class="o">&gt;</span> <span class="o">/</span><span class="n">dev</span><span class="o">/</span><span class="n">null</span>
128128

129129
<span class="c1"># Update apt repos.</span>
130130
<span class="n">sudo</span> <span class="n">apt</span> <span class="n">update</span>

v0.1.1/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: a4e02cfaa7b400c9cae1fb4cd2590bbc
3+
config: 87efe7a3a719f6786fa94b05df783028
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

v0.2.1/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 1dcdf72b6c2f073fc6ebb36c6b667f73
3+
config: 8fed88eeac03604f7e3c09293ea466b3
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

0 commit comments

Comments
 (0)