diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 06935d1..385eace 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -2338,6 +2338,16 @@ function system_update_8042() {
 }
 
 /**
+ * Enable Views if the node listing is set as the front page.
+ */
+function system_update_8999() {
+  $front_page = config('system.site')->get('page.front');
+  if (!isset($front_page) || $front_page == 'node') {
+    update_module_enable(array('views'));
+  }
+}
+
+/**
  * @} End of "defgroup updates-7.x-to-8.x".
  * The next series of updates should start at 9000.
  */
