Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 260149 - [QA] net-fs/nfs-utils nfs.initd has bashism
Summary: [QA] net-fs/nfs-utils nfs.initd has bashism
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Network Filesystems
URL:
Whiteboard:
Keywords: QAcanfix
Depends on:
Blocks:
 
Reported: 2009-02-24 17:15 UTC by Timothy Redaelli (RETIRED)
Modified: 2009-02-27 01:41 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Timothy Redaelli (RETIRED) gentoo-dev 2009-02-24 17:15:43 UTC
nfs.initd on line 30 uses brace expansion that is a bashism.
The solution is to unroll the line:

-       for d in /var/lib/nfs/{rpc_pipefs,v4recovery,v4root} ; do
+       for d in /var/lib/nfs/rpc_pipefs /var/lib/nfs/v4recovery /var/lib/nfs/v4root; do