]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Spelling/typos
authorDan Mick <dan.mick@redhat.com>
Tue, 17 Apr 2018 01:35:33 +0000 (18:35 -0700)
committerAlfredo Deza <alfredo@deza.pe>
Fri, 20 Apr 2018 15:31:41 +0000 (11:31 -0400)
Signed-off-by: Dan Mick <dan.mick@redhat.com>
(cherry picked from commit 15ef400bb35e70cbb27144d595759d31a075aa37)

src/ceph-volume/ceph_volume/api/lvm.py
src/ceph-volume/ceph_volume/process.py
src/ceph-volume/ceph_volume/systemd/systemctl.py

index e9dbb0b22885c9d94430acefe68d431d91ff7a39..7d24966659368567bef89f11fc18c13ecb7b53e9 100644 (file)
@@ -172,7 +172,7 @@ def get_api_vgs():
     Return the list of group volumes available in the system using flags to
     include common metadata associated with them
 
-    Command and sample delimeted output, should look like::
+    Command and sample delimited output should look like::
 
         $ vgs --noheadings --readonly --separator=';' \
           -o vg_name,pv_count,lv_count,snap_count,vg_attr,vg_size,vg_free
@@ -192,7 +192,7 @@ def get_api_lvs():
     Return the list of logical volumes available in the system using flags to include common
     metadata associated with them
 
-    Command and delimeted output, should look like::
+    Command and delimited output should look like::
 
         $ lvs --noheadings --readonly --separator=';' -o lv_tags,lv_path,lv_name,vg_name
           ;/dev/ubuntubox-vg/root;root;ubuntubox-vg
@@ -213,7 +213,7 @@ def get_api_pvs():
 
     This will only return physical volumes set up to work with LVM.
 
-    Command and delimeted output, should look like::
+    Command and delimited output should look like::
 
         $ pvs --noheadings --readonly --separator=';' -o pv_name,pv_tags,pv_uuid
           /dev/sda1;;
@@ -542,7 +542,7 @@ class Volumes(list):
 
     def _purge(self):
         """
-        Deplete all the items in the list, used internally only so that we can
+        Delete all the items in the list, used internally only so that we can
         dynamically allocate the items when filtering without the concern of
         messing up the contents
         """
index 4bedb134f8d25b0c5ece60f95ea91916ed1866db..9eece12419f110a1aff9edc8146e3dc914958bc9 100644 (file)
@@ -61,7 +61,7 @@ def log_descriptors(reads, process, terminal_logging):
 def obfuscate(command_, on=None):
     """
     Certain commands that are useful to log might contain information that
-    should be replaced by '*' like when creating OSDs and the keyryings are
+    should be replaced by '*' like when creating OSDs and the keyrings are
     being passed, which should not be logged.
 
     :param on: A string (will match a flag) or an integer (will match an index)
index ab78456e6c2f9f44003c66c4d24be060ba8776f8..688433774f15056e6f7b824e802450d06137a5cb 100644 (file)
@@ -60,7 +60,7 @@ def mask_ceph_disk():
     # systemctl allows using a glob like '*' for masking, but there was a bug
     # in that it wouldn't allow this for service templates. This means that
     # masking ceph-disk@* will not work, so we must link the service directly.
-    # /etc/systemd takes precendence regardless of the location of the unit
+    # /etc/systemd takes precedence regardless of the location of the unit
     process.run(
         ['ln', '-sf', '/dev/null', '/etc/systemd/system/ceph-disk@.service']
     )