summaryrefslogtreecommitdiff
path: root/contrib/aix
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-03-07 10:22:10 +1100
committerDarren Tucker <dtucker@zip.com.au>2009-03-07 10:22:10 +1100
commit558d6ca949e36811259c05bac1416b6f317beef8 (patch)
tree3055c09ef51211e53ea70ece00523a7a89767897 /contrib/aix
parent60ccbf2f2fc545dba9029e9ccfde7ce7bc0bb03b (diff)
- (dtucker) [contrib/aix/buildbff.sh] Only try to rename ssh_prng_cmds if it
exists (it's not created if OpenSSL's PRNG is self-seeded, eg if the OS has a /dev/random).
Diffstat (limited to 'contrib/aix')
-rwxr-xr-xcontrib/aix/buildbff.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/contrib/aix/buildbff.sh b/contrib/aix/buildbff.sh
index 97a7cbbba..6648e8e65 100755
--- a/contrib/aix/buildbff.sh
+++ b/contrib/aix/buildbff.sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# buildbff.sh: Create AIX SMIT-installable OpenSSH packages 3# buildbff.sh: Create AIX SMIT-installable OpenSSH packages
4# $Id: buildbff.sh,v 1.10 2006/09/10 03:24:19 dtucker Exp $ 4# $Id: buildbff.sh,v 1.11 2009/03/06 23:22:10 dtucker Exp $
5# 5#
6# Author: Darren Tucker (dtucker at zip dot com dot au) 6# Author: Darren Tucker (dtucker at zip dot com dot au)
7# This file is placed in the public domain and comes with absolutely 7# This file is placed in the public domain and comes with absolutely
@@ -151,11 +151,18 @@ fi
151 151
152 152
153# Rename config files; postinstall script will copy them if necessary 153# Rename config files; postinstall script will copy them if necessary
154for cfgfile in ssh_config sshd_config ssh_prng_cmds 154for cfgfile in ssh_config sshd_config
155do 155do
156 mv $FAKE_ROOT/$sysconfdir/$cfgfile $FAKE_ROOT/$sysconfdir/$cfgfile.default 156 mv $FAKE_ROOT/$sysconfdir/$cfgfile $FAKE_ROOT/$sysconfdir/$cfgfile.default
157done 157done
158 158
159# AIX 5.3 and newer have /dev/random and don't create ssh_prng_cmds
160if [ -f $FAKE_ROOT/$sysconfdir/ssh_prng_cmds ]
161then
162 mv FAKE_ROOT/$sysconfdir/ssh_prng_cmds \
163 $FAKE_ROOT/$sysconfdir/ssh_prng_cmds.default
164fi
165
159# 166#
160# Generate lpp control files. 167# Generate lpp control files.
161# working dir is $FAKE_ROOT but files are generated in dir above 168# working dir is $FAKE_ROOT but files are generated in dir above