]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
Merge remote-tracking branch 'origin/next' into fifteen
authorArne Fitzenreiter <arne_f@ipfire.org>
Sat, 21 Dec 2013 09:05:39 +0000 (10:05 +0100)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sat, 21 Dec 2013 09:05:39 +0000 (10:05 +0100)
config/rootfiles/common/configroot
config/rootfiles/common/i586/strongswan-padlock
config/rootfiles/core/74/filelists/files
lfs/configroot
lfs/strongswan
make.sh
src/scripts/httpscert

index 087443aab70c1c734b8e1a9000e129bbdfbd32a2..b1097cd8956e2af376ba1b8081263308de3f5873 100644 (file)
@@ -155,6 +155,7 @@ var/ipfire/proxy
 #var/ipfire/proxy/calamaris
 #var/ipfire/proxy/calamaris/bin
 #var/ipfire/proxy/settings
+#var/ipfire/proxy/squid.conf
 var/ipfire/qos
 #var/ipfire/qos/bin
 #var/ipfire/qos/bin/RRD-func.pl
index 4ebfc75b9ab842ff7eac28f2fc3d4d1f3ab279b4..02aa457d31559086586f188971b2c516e1fba7cb 100644 (file)
@@ -1,2 +1 @@
 usr/lib/ipsec/plugins/libstrongswan-padlock.so
-usr/lib/ipsec/plugins/libstrongswan-rdrand.so
index 5a874e7b326a9f99f766f12f225041293fc8a60e..52d01785d65f22048eb139fe6cb0effa0c175385 100644 (file)
@@ -2,5 +2,6 @@ etc/system-release
 etc/issue
 srv/web/ipfire/cgi-bin/dnsforward.cgi
 srv/web/ipfire/cgi-bin/proxy.cgi
+usr/local/bin/httpscert
 var/ipfire/header.pl
 var/ipfire/langs
index f73453d91c391e5bf3bc4e7f1b1f1ab9069ca309..98e7af320a30380eda721a7c1478ec08b29708f3 100644 (file)
@@ -68,7 +68,7 @@ $(TARGET) :
            fwhosts/customnetworks fwhosts/customhosts fwhosts/customgroups fwhosts/customservicegrp fwlogs/ipsettings fwlogs/portsettings \
            isdn/settings mac/settings main/disable_nf_sip main/hosts main/routing main/settings net-traffic/settings optionsfw/settings \
            ovpn/ccd.conf ovpn/ccdroute ovpn/ccdroute2 pakfire/settings portfw/config ppp/settings-1 ppp/settings-2 ppp/settings-3 ppp/settings-4 \
-           ppp/settings-5 ppp/settings proxy/settings proxy/advanced/settings proxy/advanced/cre/enable remote/settings qos/settings qos/classes qos/subclasses qos/level7config qos/portconfig \
+           ppp/settings-5 ppp/settings proxy/settings proxy/squid.conf proxy/advanced/settings proxy/advanced/cre/enable remote/settings qos/settings qos/classes qos/subclasses qos/level7config qos/portconfig \
            qos/tosconfig snort/settings tripwire/settings upnp/settings vpn/config vpn/settings vpn/ipsec.conf \
            vpn/ipsec.secrets vpn/caconfig wakeonlan/clients.conf wireless/config wireless/settings; do \
            touch $(CONFIG_ROOT)/$$i; \
index 948db5b1dfee681a5caa5bf9e28d6e9dd9729ae0..5c411a3337ae4279c604fd2e1eaea6fe0631b425 100644 (file)
@@ -34,12 +34,10 @@ TARGET     = $(DIR_INFO)/$(THISAPP)
 
 ifeq "$(MACHINE)" "i586"
        CONFIGURE_OPTIONS = \
-               --enable-padlock \
-               --enable-rdrand
+               --enable-padlock
 else
        CONFIGURE_OPTIONS = \
-               --disable-padlock \
-               --disable-rdrand
+               --disable-padlock
 endif
 
 ###############################################################################
diff --git a/make.sh b/make.sh
index 8de509725cff68c9b89734d26921179d6d3bc5c3..8e7252fbc44471f25261a555a456becfc6a952af 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -26,7 +26,7 @@ NAME="IPFire"                                                 # Software name
 SNAME="ipfire"                                                 # Short name
 VERSION="2.13"                                                 # Version number
 CORE="74"                                                      # Core Level (Filename)
-PAKFIRE_CORE="73"                                              # Core Level (PAKFIRE)
+PAKFIRE_CORE="74"                                              # Core Level (PAKFIRE)
 GIT_BRANCH=`git status | head -n1 | cut -d" " -f4`             # Git Branch
 SLOGAN="www.ipfire.org"                                                # Software slogan
 CONFIG_ROOT=/var/ipfire                                                # Configuration rootdir
index fb2d64bace8d9060a3083d847eb54218dac10c27..d0e23fa7f8bdf784438b7c7d162226111be694cb 100644 (file)
@@ -6,13 +6,9 @@
 # See how we were called.
 case "$1" in
   new)
-       # set temporary random file
-       export RANDFILE=/root/.rnd
        if [ ! -f /etc/httpd/server.key ]; then
                echo "Generating https server key."
-               /usr/bin/openssl genrsa -rand \
-                       /boot/vmlinuz:CONFIG_ROOT/ethernet/settings -out \
-                       /etc/httpd/server.key 1024
+               /usr/bin/openssl genrsa -out /etc/httpd/server.key 4096
        fi
        echo "Generating CSR"
        /bin/cat /etc/certparams | sed "s/HOSTNAME/`hostname -f`/" | /usr/bin/openssl \
@@ -21,9 +17,6 @@ case "$1" in
        /usr/bin/openssl x509 -req -days 999999 -in \
                /etc/httpd/server.csr -signkey /etc/httpd/server.key -out \
                /etc/httpd/server.crt
-       # unset and remove random file
-       export -n RANDFILE
-       rm -f /root/.rnd
        ;;
   read)
        if [ -f /etc/httpd/server.key -a -f /etc/httpd/server.crt -a -f /etc/httpd/server.csr ]; then