]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-daemon: long lines
authorSage Weil <sage@redhat.com>
Fri, 27 Sep 2019 19:30:52 +0000 (14:30 -0500)
committerSage Weil <sage@redhat.com>
Wed, 2 Oct 2019 12:11:12 +0000 (07:11 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/ceph-daemon

index 1f8c1e8c519f72164d3212dd731644fd5bdb1c87..848f9304f4a1542a4fee9a4f4531dc51894c3ced 100755 (executable)
@@ -605,7 +605,8 @@ def command_ls():
 def command_rm_daemon():
     (daemon_type, daemon_id) = args.name.split('.')
     if daemon_type in ['mon', 'osd'] and not args.force:
-        raise RuntimeError('must pass --force to proceed: this command may destroy precious data!')
+        raise RuntimeError('must pass --force to proceed: '
+                           'this command may destroy precious data!')
     unit_name = get_unit_name(args.fsid, daemon_type, daemon_id)
     subprocess.check_output(['systemctl', 'stop', unit_name])
     subprocess.check_output(['systemctl', 'disable', unit_name])
@@ -616,22 +617,28 @@ def command_rm_daemon():
 
 def command_rm_cluster():
     if not args.force:
-        raise RuntimeError('must pass --force to proceed: this command may destroy precious data!')
+        raise RuntimeError('must pass --force to proceed: '
+                           'this command may destroy precious data!')
     unit_name = 'ceph-%s.target' % args.fsid
     try:
         subprocess.check_output(['systemctl', 'stop', unit_name])
         subprocess.check_output(['systemctl', 'disable', unit_name])
     except subprocess.CalledProcessError:
         pass
-    subprocess.check_output(['rm', '-f', args.unit_dir + '/ceph-%s@.service' % args.fsid])
-    subprocess.check_output(['rm', '-f', args.unit_dir + '/ceph-%s.target' % args.fsid])
+    # FIXME: disable individual daemon units, too?
+    subprocess.check_output(['rm', '-f', args.unit_dir +
+                             '/ceph-%s@.service' % args.fsid])
+    subprocess.check_output(['rm', '-f', args.unit_dir +
+                             '/ceph-%s.target' % args.fsid])
     subprocess.check_output(['rm', '-rf',
                   args.unit_dir + '/ceph-%s.target.wants' % args.fsid])
+    # data
     subprocess.check_output(['rm', '-rf', args.data_dir + '/' + args.fsid])
+    # logs
     subprocess.check_output(['rm', '-rf', args.log_dir + '/' + args.fsid])
-    subprocess.check_output(['rm', '-rf', args.log_dir + '/*.wants/ceph-%s@*' % args.fsid])
+    subprocess.check_output(['rm', '-rf', args.log_dir +
+                             '/*.wants/ceph-%s@*' % args.fsid])
 
-    # FIXME: disable individual daemon units, too
 
 ##################################