diff options
author | karl <karl> | 2014-07-31 11:56:15 +0000 |
---|---|---|
committer | karl <karl> | 2014-07-31 11:56:15 +0000 |
commit | 70f2a89302900e19d43ce489ddb9c105f9f58a22 (patch) | |
tree | 32caeadfa1d392930e873cff2ea996fbcbc2a075 | |
parent | 352a0abca932ee06e44339661d90aedaa6ec151d (diff) | |
download | tog-pegasus-70f2a89302900e19d43ce489ddb9c105f9f58a22.zip tog-pegasus-70f2a89302900e19d43ce489ddb9c105f9f58a22.tar.gz tog-pegasus-70f2a89302900e19d43ce489ddb9c105f9f58a22.tar.xz |
BUG#: 9914
TITLE: Script syntax error
DESCRIPTION: Corrected error
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -358,7 +358,7 @@ if [ ! -z "$with_ssl" ]; then fi if [ ! -f "$with_ssl/$libbase/libssl.so" ]; then - echo "$0: missing dependency: \$with_ssl/$libbase/libss.so" + echo "$0: missing dependency: \$with_ssl/$libbase/libssl.so" missing=1 fi @@ -833,7 +833,7 @@ then fi if [ "$enable_pam" = "1" ]; then echo "export PEGASUS_PAM_AUTHENTICATION=true" >> $options - echo "export PEGASUS_USE_PAM_STANDALONE_PROC=true" >> $options + echo "export PEGASUS_USE_PAM_STANDALONE_PROC=false" >> $options \cp -f $PEGASUS_ROOT/rpm/wbem /etc/pam.d chmod 0644 /etc/pam.d/wbem fi |