mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
7 lines
158 B
Bash
7 lines
158 B
Bash
#!/bin/sh
|
|
|
|
mkdir /srv/graphite
|
|
mkfs.ext4 /dev/xvdb
|
|
echo "/dev/xvdb /srv/graphite ext4 noatime,defaults,barrier=0 1 1" >> /etc/fstab
|
|
mount /srv/graphite
|