Compare commits

...

2 Commits

Author SHA1 Message Date
Fedora Release Engineering 025743a0f7 dist-git conversion 2010-07-29 05:20:21 +00:00
Praveen K Paladugu 9fae8ae628 Changed the random file and some init script changes to not start the
server by default
2009-12-17 00:23:04 +00:00
7 changed files with 37 additions and 31 deletions
View File
-21
View File
@@ -1,21 +0,0 @@
# Makefile for source rpm: openwsman
# $Id: Makefile,v 1.1 2008/10/13 10:50:29 huzaifas Exp $
NAME := openwsman
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
-1
View File
@@ -1 +0,0 @@
F-12
-1
View File
@@ -1 +0,0 @@
openwsman-2_1_0-1_fc9:HEAD:openwsman-2.1.0-1.fc9.src.rpm:1225537021
+15 -7
View File
@@ -1,16 +1,24 @@
diff -up ./etc/init/openwsmand.sh.in.org ./etc/init/openwsmand.sh.in
--- ./etc/init/openwsmand.sh.in.org 2009-12-11 13:04:10.000000000 -0600
+++ ./etc/init/openwsmand.sh.in 2009-12-11 13:14:14.000000000 -0600
@@ -5,7 +5,7 @@
diff -up ./etc/init/openwsmand.sh.in.new ./etc/init/openwsmand.sh.in
--- ./etc/init/openwsmand.sh.in.new 2009-12-16 18:16:06.000000000 -0600
+++ ./etc/init/openwsmand.sh.in 2009-12-16 18:16:18.000000000 -0600
@@ -4,21 +4,21 @@
# Provides: openwsmand
# Required-Start: $remote_fs
# Required-Stop: $network
# Default-Start: 2 3 4 5
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
+# Default-Stop: 0 1 6
+# Default-Start:
+# Default-Stop:
# Short-Description: Openwsman Daemon
# Description: openwsmand
# Start/Stop the Openwsman Daemon
@@ -18,7 +18,7 @@
### END INIT INFO
#
#
-# chkconfig: 2345 36 64
+# chkconfig: - 36 64
# description: Openwsman Daemon
# processname: openwsmand
NAME=openwsmand
DAEMON=/usr/sbin/$NAME
+12
View File
@@ -0,0 +1,12 @@
diff -up ./etc/ssleay.cnf.new ./etc/ssleay.cnf
--- ./etc/ssleay.cnf.new 2009-12-16 17:04:15.000000000 -0600
+++ ./etc/ssleay.cnf 2009-12-16 17:04:55.000000000 -0600
@@ -2,7 +2,7 @@
# SSLeay example configuration file.
#
-RANDFILE = $ENV::HOME/.rnd
+RANDFILE = /dev/random
[ req ]
default_bits = 1024
+10 -1
View File
@@ -30,7 +30,7 @@ BuildRequires: perl-devel pkgconfig openssl-devel
BuildRequires: libtool
Requires: net-tools
Version: 2.2.0
Release: 2%{?dist}
Release: 3%{?dist}
Url: http://www.openwsman.org/
License: BSD
Group: Applications/System
@@ -40,6 +40,7 @@ Source1: %{name}.rpmlintrc
Patch0: %{name}-pam-auth.patch
Patch1: %{name}-initscript.patch
Patch2: perl-bindings.patch
Patch3: %{name}-randfile.patch
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXXX)
%description
@@ -121,6 +122,9 @@ License: BSD
Group: System Environment/Daemons
Requires: net-tools
Requires: openwsman-client
Requires(post): chkconfig
Requires(preun): chkconfig
Requires(postun): initscripts
Summary: Openwsman Server and service libraries
%description server
@@ -192,6 +196,7 @@ Authors:
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%build
sh autoconfiscate.sh
@@ -310,6 +315,10 @@ rm -f /var/log/wsmand.log
%changelog
* Wed Dec 16 2009 Praveen K Paladugu <praveen_paladugu@dell.com> - 2.2.0-3
- Changed the random file used by openssl to generate a certificate while
- starting the openwsman-server service
* Wed Dec 9 2009 Praveen K Paladugu <praveen_paladugu@dell.com> - 2.2.0-2
- Re-wrote the spec file to break the openwmsman pkg into lib, client
- and server components following the upstream spec file.