touch-packages team mailing list archive
-
touch-packages team
-
Mailing list archive
-
Message #53124
[Bug 1418796] [NEW] fix mountall: Evnet failed with two style code
Public bug reported:
there are two fix for "mountall: Event failed" under
mountall-2.54ubuntu1/conf/ mounted-proc and mounted-debugfs
In mounted-proc, using following code:
if [ -e "${MOUNTPOINT}"/slabinfo ]; then
chmod 0400 "${MOUNTPOINT}"/slabinfo
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
** Affects: mountall (Ubuntu)
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mountall in Ubuntu.
https://bugs.launchpad.net/bugs/1418796
Title:
fix mountall: Evnet failed with two style code
Status in mountall package in Ubuntu:
New
Bug description:
there are two fix for "mountall: Event failed" under
mountall-2.54ubuntu1/conf/ mounted-proc and mounted-debugfs
In mounted-proc, using following code:
if [ -e "${MOUNTPOINT}"/slabinfo ]; then
chmod 0400 "${MOUNTPOINT}"/slabinfo
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 manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mountall/+bug/1418796/+subscriptions
Follow ups
References