ispCP - Board - Support
1.0.3 failure on FreeBSD 7.2-stable - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: 1.0.3 failure on FreeBSD 7.2-stable (/thread-8833.html)



1.0.3 failure on FreeBSD 7.2-stable - agshekeloh - 12-21-2009 12:28 AM

Hi,

I just tried 1.0.3 on a FreeBSD 7.1 system:

# make -f BSDmakefile install
...
install: ./setup/regenerate.sql: No such file or directory
*** Error code 71

Stop in /usr/home/mwlucas/ispcp-omega-1.0.3/engine.
*** Error code 1

Stop in /usr/home/mwlucas/ispcp-omega-1.0.3.

It looks like we need some kind of update to BSDmakefile.

Any suggestions?


RE: 1.0.3 failure on FreeBSD 7.2-stable - RatS - 12-21-2009 12:38 AM

The BSDmakefile contains an error. You might patch it:
Code:
Index: engine/BSDmakefile
===================================================================
--- engine/BSDmakefile    (revision 2421)
+++ engine/BSDmakefile    (working copy)
@@ -110,8 +110,7 @@
    $(CMD_INSTALL) ./setup/ispcp-setup-methods.pl $(SYSTEM_ENGINE_ROOT)/setup
    $(CMD_INSTALL) ./setup/ispcp-update $(SYSTEM_ENGINE_ROOT)/setup
    $(CMD_INSTALL) ./setup/ispcp-uninstall $(SYSTEM_ENGINE_ROOT)/setup
-    $(CMD_INSTALL) ./setup/regenerate.sql $(SYSTEM_ENGINE_ROOT)/setup
-    $(CMD_INSTALL) ./setup/ispcp1.0.0-ispcp.sql $(SYSTEM_ENGINE_ROOT)/setup
+    $(CMD_INSTALL) ./setup/updDB.php $(SYSTEM_ENGINE_ROOT)/setup

    $(CMD_INSTALL) ./tools/ispcp-httpd-logs-mngr $(SYSTEM_ENGINE_ROOT)/tools/ispcp-httpd-logs-mngr
    $(CMD_INSTALL) ./tools/ispcpphptemp.sh $(SYSTEM_ENGINE_ROOT)/tools/ispcpphptemp.sh



RE: 1.0.3 failure on FreeBSD 7.2-stable - agshekeloh - 12-21-2009 12:43 AM

Wow, an immediate reply from a project lead. The patch applied cleanly, and the install finished. Thank you!