Browse Source

Properly reset the ZTP bit.

Joe Clarke 5 years ago
parent
commit
4d7503c689
1 changed files with 1 additions and 1 deletions
  1. 1 1
      www/swreg/callhome.php

+ 1 - 1
www/swreg/callhome.php

@@ -78,7 +78,7 @@ if ($row['should_re_ztp'] == 1) {
     $sql = 'UPDATE DEVICE_MAP SET should_re_ztp=? WHERE serial_number=?';
     try {
         $sth = $dbh->prepare($sql);
-        $res = $sth->execute(array(1, $sn));
+        $res = $sth->execute(array(0, $sn));
     } catch (PDOException $e) {
         $logger->crit("Failed to reset re-ZTP bit for {$sn}: {$e->getMessage()}");
     }