]> git-server-git.apps.pok.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)
committerDan Mick <dan.mick@redhat.com>
Tue, 17 Apr 2018 02:13:58 +0000 (19:13 -0700)
Signed-off-by: Dan Mick <dan.mick@redhat.com>
src/ceph-volume/ceph_volume/api/lvm.py
src/ceph-volume/ceph_volume/process.py
src/ceph-volume/ceph_volume/systemd/systemctl.py

index 656c19ddfb3483ccb248461d0da14e5b312aa938..08d64ffaff89ccbe44e9c94e64a40389d4e3501c 100644 (file)
@@ -76,7 +76,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 --separator=';' \
           -o vg_name,pv_count,lv_count,snap_count,vg_attr,vg_size,vg_free
@@ -96,7 +96,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 --separator=';' -o lv_tags,lv_path,lv_name,vg_name
           ;/dev/ubuntubox-vg/root;root;ubuntubox-vg
@@ -117,7 +117,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 --separator=';' -o pv_name,pv_tags,pv_uuid
           /dev/sda1;;
@@ -446,7 +446,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 91335e23ca7b3f68f929d19f15a68b36f03b4582..872bd093041d5f244c04fb121b069ab084e6a241 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']
     )