commit 6dbacc3b7009dba4c6784c5006e69d5c59584a67
Author: David Sorber <dsorber@phalanx.fios-router.home>
Date:   Mon Jan 16 08:45:06 2017 -0500

    Modifying my support scripts after upgrading phalanx.

diff --git a/software/misc/checker.py b/software/misc/checker.py
index e665558..0b3cac0 100755
--- a/software/misc/checker.py
+++ b/software/misc/checker.py
@@ -11,7 +11,7 @@ RELAY_PASSWD = "You'reNotMySupervisor"
 TO_EMAIL = 'baranovich@gmail.com'
 
 RAID_DEVS = ['md0']
-BLOCK_DEVS = ['sda', 'sdb', 'sdc', 'sdd']
+BLOCK_DEVS = ['sda', 'sdb', 'sdc', 'sdd', 'sde', 'sdf']
 
 SEP = '-' * 80
 
@@ -112,6 +112,11 @@ def main():
     output.append(cmd_out.decode('utf-8').strip())
     output.append('{:s}\n'.format(SEP))
     
+    # Check software RAID devices
+    raid_errors, raid_output = check_raid(RAID_DEVS)
+    errors.extend(raid_errors)
+    output.extend(raid_output)
+    
     # Report df -h (disk utilization)
     cmd_out = subprocess.check_output('df -h', shell=True)
     output.append(cmd_out.decode('utf-8').strip())
@@ -121,11 +126,6 @@ def main():
     smart_errors, smart_output = check_smart(BLOCK_DEVS)
     errors.extend(smart_errors)
     output.extend(smart_output)
-    
-    # Check software RAID devices
-    raid_errors, raid_output = check_raid(RAID_DEVS)
-    errors.extend(raid_errors)
-    output.extend(raid_output)
 
     # If no errors prepend "all okay" message
     should_send = False
diff --git a/software/misc/display.py b/software/misc/display.py
index f1d4885..3a560a6 100755
--- a/software/misc/display.py
+++ b/software/misc/display.py
@@ -59,7 +59,7 @@ def main():
 
     hostname = subprocess.check_output('hostname', shell=True).strip()
 
-    ip_addr = get_ipv4_addr('enp2s0')
+    ip_addr = get_ipv4_addr('enp3s0')
     root_stats = get_fs_usage('/dev/sda2')
     storage_stats = get_fs_usage('/dev/md0')
 
