diff --git a/includes/install.core.inc b/includes/install.core.inc
index 7405f9f..8dcaf55 100644
--- a/includes/install.core.inc
+++ b/includes/install.core.inc
@@ -1700,6 +1700,7 @@ function _install_configure_form($form, &$form_state, &$install_state) {
   $form['site_information']['site_name'] = array(
     '#type' => 'textfield',
     '#title' => st('Site name'),
+    '#default_value' => $_SERVER['SERVER_NAME'],
     '#required' => TRUE,
     '#weight' => -20,
   );
diff --git a/profiles/minimal/minimal.profile b/profiles/minimal/minimal.profile
index ff8f281..a4abe2d 100644
--- a/profiles/minimal/minimal.profile
+++ b/profiles/minimal/minimal.profile
@@ -1,11 +1,2 @@
 <?php
 
-/**
- * Implements hook_form_FORM_ID_alter().
- *
- * Allows the profile to alter the site configuration form.
- */
-function minimal_form_install_configure_form_alter(&$form, $form_state) {
-  // Pre-populate the site name with the server name.
-  $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
-}
diff --git a/profiles/standard/standard.profile b/profiles/standard/standard.profile
index 7671c12..a4abe2d 100644
--- a/profiles/standard/standard.profile
+++ b/profiles/standard/standard.profile
@@ -1,11 +1,2 @@
 <?php
 
-/**
- * Implements hook_form_FORM_ID_alter().
- *
- * Allows the profile to alter the site configuration form.
- */
-function standard_form_install_configure_form_alter(&$form, $form_state) {
-  // Pre-populate the site name with the server name.
-  $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
-}
