The following pull request was submitted through Github.
It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/7911

This e-mail was sent by the LXC bot, direct replies will not reach the author
unless they happen to be subscribed to this list.

=== Description (from pull-request) ===
Just a minor fix. In the bash examples you should not escape the underscores.
From 021693ddbd4432acb7a82bfadd41dad798b092d2 Mon Sep 17 00:00:00 2001
From: Kees Bakker <k...@ijzerbout.nl>
Date: Tue, 22 Sep 2020 11:34:56 +0200
Subject: [PATCH] doc/storage: no need to escape underscore in bash examples

---
 doc/storage.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/storage.md b/doc/storage.md
index 421656ba84..6e0dd9f5fa 100644
--- a/doc/storage.md
+++ b/doc/storage.md
@@ -267,13 +267,13 @@ lxc storage create pool1 ceph
 - Create a osd storage pool named "pool1" in the CEPH cluster "my-cluster".
 
 ```bash
-lxc storage create pool1 ceph ceph.cluster\_name=my-cluster
+lxc storage create pool1 ceph ceph.cluster_name=my-cluster
 ```
 
 - Create a osd storage pool named "pool1" with the on-disk name "my-osd".
 
 ```bash
-lxc storage create pool1 ceph ceph.osd.pool\_name=my-osd
+lxc storage create pool1 ceph ceph.osd.pool_name=my-osd
 ```
 
 - Use the existing osd storage pool "my-already-existing-osd".
@@ -429,7 +429,7 @@ lxc storage create pool1 zfs
  - Create a loop-backed pool named "pool1" with the ZFS Zpool called "my-tank".
 
 ```bash
-lxc storage create pool1 zfs zfs.pool\_name=my-tank
+lxc storage create pool1 zfs zfs.pool_name=my-tank
 ```
 
  - Use the existing ZFS Zpool "my-tank".
_______________________________________________
lxc-devel mailing list
lxc-devel@lists.linuxcontainers.org
http://lists.linuxcontainers.org/listinfo/lxc-devel

Reply via email to