Michael,
The makefile you send is the same as the one that it's on the CVS (17/Sep/2004). It didn't work. We solve the problem changing the line:
$(AC_FILES)::
$(INSTALL) -g ${httpd_group} -o ${httpd_user} -m 644 $@
$(DEST_CONFOPENSSLOPENSSLDIR)/[EMAIL PROTECTED]with the following:
$(AC_FILES)::
$(INSTALL) -g ${httpd_group} -o ${httpd_user} -m 644 [EMAIL PROTECTED]
$(DEST_CONFOPENSSLOPENSSLDIR)/[EMAIL PROTECTED]I attached the corrected makefile.
Regards, Julio
Michael Bell wrote:
Julio D'Angelo wrote:
We get this error message:
Error 700
General Error The compilation of the command cmdEditCSR failed. Can't use an undefined value as a HASH reference at /usr/local/openca_token/openca/lib/functions/crypto-utils.lib line 1115.
when we try to use this option "Initialization/Create the initial administrator/Edit the request <ca?cmd=setupInitialCert&dest=editCSR>" after using "Initialization/Create the initial administrator/Create a new request <ca?cmd=setupInitialCert&dest=basic_csr>".
We are testing this configuration: -OpenCA CVS Version -make install-offline
We solve the problem copying into ".../openca/etc/openssl/openssl" the following file "CA_Operator.conf.template". The directory was empty.
The makefile in src/common/etc/openssl/openssl/ was not correct. I attached the corrected makefile.
Michael
------------------------------------------------------------------------
# file: src/common/etc/openssl/openssl/Makefile # # � 2001 OpenCA Group
TOP = ../../../../.. include $(TOP)/Makefile.global-vars
DEST_CONFOPENSSLOPENSSLDIR = ${etc_prefix}/openssl/openssl
AC_FILES = \ CA_Operator.conf \ Cross_CA.conf \ Domain_Controller.conf \ Mail_Server.conf \ RA_Operator.conf \ Sub-CA.conf \ User.conf \ VPN_Server.conf \ Web_Server.conf
#---- variable settings above, rules below ----
.PHONY: default install clean distclean
default::
install:: $(AC_FILES)
$(AC_FILES):: $(INSTALL) -g ${httpd_group} -o ${httpd_user} -m 644 $@ $(DEST_CONFOPENSSLOPENSSLDIR)/[EMAIL PROTECTED]
distclean::
$(RM) $(AC_FILES)
# file: src/common/etc/openssl/openssl/Makefile # # � 2001 OpenCA Group
TOP = ../../../../..
include $(TOP)/Makefile.global-vars
DEST_CONFOPENSSLOPENSSLDIR = ${etc_prefix}/openssl/openssl
AC_FILES = \
CA_Operator.conf \
Cross_CA.conf \
Domain_Controller.conf \
Mail_Server.conf \
RA_Operator.conf \
Sub-CA.conf \
User.conf \
VPN_Server.conf \
Web_Server.conf
#---- variable settings above, rules below ----
.PHONY: default install clean distclean
default::
install:: $(AC_FILES)
$(AC_FILES)::
$(INSTALL) -g ${httpd_group} -o ${httpd_user} -m 644 [EMAIL PROTECTED]
$(DEST_CONFOPENSSLOPENSSLDIR)/[EMAIL PROTECTED]
distclean::
$(RM) $(AC_FILES)
