why fix mountall: Evnet failed with different way?
Hi, I recently looking my custom ubuntu have a error message "mountall: Event failed" since I change my kernel.
the root cause is /proc/slabinfo is not generated anymore by my new kernel; but /etc/init/
chmod 0400 "${MOUNTPOINT}
this make mountall output the error message.
I've noticed this issue is fixed in version 2.54ubuntu1, using following code:
if [ -e "${MOUNTPOINT}
chmod 0400 "${MOUNTPOINT}
fi
my question is there also already same fix for "mountall: Event failed" in /etc/init/
chmod 0700 "${MOUNTPOINT}" || true
why we not using the SAME way to fix the SAME problem?
maybe we should change /etc/init/
if [ -e "${MOUNTPOINT}" ]; then
chmod 0700 "${MOUNTPOINT}"
fi
Question information
- Language:
- English Edit question
- Status:
- Solved
- For:
- Ubuntu mountall Edit question
- Assignee:
- No assignee Edit question
- Solved by:
- Manfred Hampl
- Solved:
- Last query:
- Last reply: