fix mountall: Evnet failed with two style code
Bug #1418796 reported by
wally
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
mountall (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
there are two fix for "mountall: Event failed" under mountall-
In mounted-proc, using following code:
if [ -e "${MOUNTPOINT}
chmod 0400 "${MOUNTPOINT}
fi
and mounted-debugfs use this:
chmod 0700 "${MOUNTPOINT}" || true
maybe we should change mounted-debugfs to:
if [ -e "${MOUNTPOINT}" ]; then
chmod 0700 "${MOUNTPOINT}"
fi
To post a comment you must log in.