Bug 127914
| Summary: | nfslock not running by default in FC3 test 1 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Joe Orton <jorton> |
| Component: | nfs-utils | Assignee: | Steve Dickson <steved> |
| Status: | CLOSED RAWHIDE | QA Contact: | Ben Levenson <benl> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2004-09-28 02:18:21 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 123268, 133652 | ||
if ["$1" -ge 1 ]; ... is correct for condrestart, as I recall. However, it's supposed to be in %postun, not %post. Fixed in -31. Make that -32 nfslock runs by default on my fc3t2 system and visual inspection confirms the change in the script to be in %postun in nfs-utils-1.0.6-34 Closing. -jef |
nfslock is not running by default on fresh FC3 test 1 install. the %post looks wrong: if [ "$1" -ge 1 ]; then /etc/rc.d/init.d/rpcidmapd condrestart > /dev/null ... else /sbin/chkconfig --add nfs /sbin/chkconfig --add nfslock ... fi should be $1 -gt 1 I believe; $1 is 1 for the first install of a package, $2 during an upgrade.