Skip to content

Commit

Permalink
Increase available space in /run
Browse files Browse the repository at this point in the history
Space in /run is limited to 200k by default, which isn't sufficient when
data is being read from a config-drive. Increasing to 1024k
should help for most cases without risking to fill up too much of our
memory.

LP: #1808119
  • Loading branch information
jharbott authored and smoser committed Dec 12, 2018
1 parent f97db74 commit d0bf77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/fstab
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ proc /proc proc defaults 0 0
devpts /dev/pts devpts defaults,gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs mode=0777 0 0
sysfs /sys sysfs defaults 0 0
tmpfs /run tmpfs rw,nosuid,relatime,size=200k,mode=755 0 0
tmpfs /run tmpfs rw,nosuid,relatime,size=1024k,mode=755 0 0

0 comments on commit d0bf77b

Please sign in to comment.