]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/setup/misc.c
apache: Write hostname into configuration at boot time
[ipfire-2.x.git] / src / setup / misc.c
index a31b1d8a844a9d4c27047b0632665fc7cedc03a0..0710c5b955a6488c62ea4c5ff71793a19bd78a7b 100644 (file)
@@ -57,15 +57,6 @@ int writehostsfiles(void)
        findkey(kv, "DOMAINNAME", domainname);
        freekeyvalues(kv);
                
-       if (!(file = fopen(CONFIG_ROOT "/main/hostname.conf", "w")))
-       {
-               sprintf (message, _("Unable to write %s/main/hostname.conf"), CONFIG_ROOT);
-               errorbox(message);
-               return 0;
-       }
-       fprintf(file, "ServerName %s.%s\n", hostname,domainname);
-       fclose(file);
-       
        if (!(file = fopen(CONFIG_ROOT "/main/hosts", "r")))
        {
                errorbox(_("Unable to open main hosts file."));