From 8936df0cf5e568763c4ad6c36a47715ea67174f0 Mon Sep 17 00:00:00 2001 From: idziubenko Date: Tue, 8 Feb 2022 10:02:02 +0300 Subject: [PATCH] Fix: added /run to mounted dirs (builder) --- pym/install/distr.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pym/install/distr.py b/pym/install/distr.py index f75ca0e..51b3f8d 100644 --- a/pym/install/distr.py +++ b/pym/install/distr.py @@ -644,6 +644,10 @@ class DirectoryDistributive(Distributive): 'type': 'bind', 'target': 'var/calculate/remote', 'source': '/var/calculate/remote'}, + {'name': 'run', + 'type': 'bind', + 'target': 'run/', + 'source': '/run'}, ] def __init__(self, directory, parent=None, mdirectory=None):