bfa79ffe61156c615be1cb15bc317eeb08f76c37
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 48-tmpfs
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/48-tmpfs
3 # Purpose:       modifies /etc/default/rcS to prevent mounting /tmp as tmpfs
4 # Authors:       grml-team (grml.org), (c)
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11
12 sed -i 's/^RAMTMP=.*/RAMTMP=no/' $target/etc/default/rcS
13 ## END OF FILE #################################################################
14 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2