diff options
author | Helmut Grohne <helmut@subdivi.de> | 2014-09-28 11:49:00 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2014-09-28 11:49:00 +0200 |
commit | 646c076cd43005e26283532d6cc7bebb7204dc9c (patch) | |
tree | 21a8cfca3ad74b91f0d422552d847c0ab1c11111 | |
parent | 23d28b7cbbea7121d063d5a39bae90fe02eb9f71 (diff) | |
download | jenkins.debian.net-646c076cd43005e26283532d6cc7bebb7204dc9c.tar.xz |
fix conceptual typo in tmpfs conversion
-rwxr-xr-x | update_jdn.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index f256c15a..ef38198b 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -15,7 +15,7 @@ explain() { mkdir -p /srv/workspace -if ! grep -q '^tmpfs\s\+/srv/workspace\s'; then +if ! grep -q '^tmpfs\s\+/srv/workspace\s' /etc/fstab; then echo "tmpfs /srv/workspace tmpfs defaults,size=60g 0 0" >> /etc/fstab fi |