Fix mastodon vm not booting due to mount options
This commit is contained in:
parent
a509355991
commit
86b0a97d12
|
@ -23,19 +23,19 @@
|
|||
depends = [ "/mnt/data" ];
|
||||
device = "/mnt/data/mastodon";
|
||||
fsType = "none";
|
||||
options = [ "bind" "X-mount.owner=mastodon" "X-mount.group=mastodon" ];
|
||||
options = [ "bind" ];
|
||||
};
|
||||
"/var/lib/postgresql" = {
|
||||
depends = [ "/mnt/data" ];
|
||||
device = "/mnt/data/postgresql";
|
||||
fsType = "none";
|
||||
options = [ "bind" "X-mount.owner=postgres" "X-mount.group=postgres" ];
|
||||
options = [ "bind" ];
|
||||
};
|
||||
"/var/lib/private/opensearch/data" = {
|
||||
depends = [ "/mnt/data" ];
|
||||
device = "/mnt/data/opensearch";
|
||||
fsType = "none";
|
||||
options = [ "bind" "X-mount.owner=opensearch" "X-mount.group=opensearch" ];
|
||||
options = [ "bind" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue