Adding hook to disable tmpfs on /tmp when using sysvinit, previously done by live-config.
This commit is contained in:
parent
320b1ce75e
commit
1a5fda595f
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Disable tmpfs on /tmp
|
||||
|
||||
if [ -e /etc/default/rcS ]
|
||||
then
|
||||
sed -i -e 's|^ *RAMTMP=.*|RAMTMP=no|' /etc/default/rcS
|
||||
fi
|
Loading…
Reference in New Issue