| Summary: | RAC Linux 4.3.0 wanting to configure security, when set to FALSE | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Darryl Miles <darryl> |
| Component: | TPTP | Assignee: | Karla Callaghan <karla.callaghan> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | closed471 | ||
|
Description
Darryl Miles
$ cat bin/SetConfig.sh
#!/bin/sh
#
# Generate the configuration files
#
java -classpath ../lib/config.jar:../lib/config.nl1.jar:../lib/config.nl2.jar:../lib/config.nl2a.jar org.eclipse.tptp.platform.agentcontroller.config.SetConfig $*
#
# Change the owner of ChkPass so that Agent Controller does not need root access for authenticating user passwords
#
SECURED=`grep -c '<Security' ../config/serviceconfig.xml`
if [ $SECURED = "0" ]; then
echo
else
echo
echo 'Agent Controller has been configured for security.'
echo 'Please enter root password to enable that security:'
su root -c "chown root ChkPass;chmod +s ChkPass"
fi
Maybe the grep should be:
grep -ic '<SecurityEnabled>true' ../config/serviceconfig.xml
Reassigning to correct component *** This bug has been marked as a duplicate of 154587 *** Setting target according to iteration matching resolution date. As of TPTP 4.6.0, TPTP is in maintenance mode and focusing on improving quality by resolving relevant enhancements/defects and increasing test coverage through test creation, automation, Build Verification Tests (BVTs), and expanded run-time execution. As part of the TPTP Bugzilla housecleaning process (see http://wiki.eclipse.org/Bugzilla_Housecleaning_Processes), this enhancement/defect is verified/closed by the Project Lead since this enhancement/defect has been resolved and unverified for more than 1 year and considered to be fixed. If this enhancement/defect is still unresolved and reproducible in the latest TPTP release (http://www.eclipse.org/tptp/home/downloads/), please re-open. |