2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-21 09:01:46 +00:00
xcat-dep/conserver
2018-11-23 14:50:04 +08:00
..
debian Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
bldconserver.pl Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
certificate-auth.patch A patch for conserver to enable client certificate authentication. 2008-01-09 22:11:29 +00:00
conserver_8.1.16-2.diff Added conserver patch to make deb package with Jarrod's updates. 2008-01-17 17:02:59 +00:00
conserver-8.1.16.tar.gz Check in the base conserver distribution for references 2008-01-17 17:06:05 +00:00
conserver-8.2.1.tar.gz Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
conserver-dummy.spec Spec file for build a dummy conserver 2018-11-23 14:50:04 +08:00
conserver.spec Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
debian-conserver-xcat.patch.gz patch for debian conserver package 2008-07-23 18:02:56 +00:00
initscript1.patch add additional information for conserver&stunnel init.d services to adapt LSB standard; also the defetc 2818375 is fixed 2009-10-12 08:38:41 +00:00
initscript_8.2.1.patch Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
initscript.patch add a README file for how to make conserver RPM and update the initscript.patch 2013-05-27 08:03:31 +00:00
make_deb.sh Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
README Upgrade conserver to 8.2.1 version 2017-06-14 15:30:01 +08:00
README.debian patch for debian conserver package 2008-07-23 18:02:56 +00:00
segfault-sslopt.patch -Patch a segmentation fault if the configuration file lacks an option xCAT usually populates 2009-11-21 18:01:29 +00:00

To make the conserver-xcat rpm, run:

./bldconserver.pl

The original patches like initscript.patch and initscript1.patch have been
replaced with initscript_8.2.1.patch, please follow the steps below to create
patch for init script.

1. Copy conserver-8.2.1.tar.gz to a directory, say /root/conserverstart
  mkdir /root/conservertar
  cp conserver-8.2.1.tar.gz /root/conserverstart

2. Copy the initscript_8.2.1.patch to the same directory
  cp initscript_8.2.1.patch /root/conserverstart

3. Uncompress the conserver-8.2.1.tar.gz into two copies:
  tar zxvf conserver-8.2.1.tar.gz
  mv conserver-8.2.1 conserver-8.2.1-diffinit
  tar zxvf conserver-8.2.1.tar.gz

4. Patch the conserver.init with the original patch copied from Git repository
  cd /root/conservertar
  cat initscript_8.2.1.patch | /usr/bin/patch -s -p1 --fuzz=0
  select conserver-8.2.1-diffinit/contrib/redhat-rpm/conserver.init as the file to patch

5. Update the conserver-8.2.1-diffinit/contrib/redhat-rpm/conserver.init with whatever changes that are needed

6. Generate the new patch:
  cd /root/conserverstart
  diff -ruN conserver-8.2.1/contrib/redhat-rpm/conserver.init conserver-8.2.1-diffinit/contrib/redhat-rpm/conserver.init > initscript_8.2.1.patch

7. Copy the new patch to the xcat-dep Git repository and checkin
  cp initscript_8.2.1.patch ~/xcat/xcat-dep/conserver/
  cd ~/xcat/xcat-dep/conserver/
  git commit -m "blah blah blah"