vaultwarden lxc working
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mathieu Broillet 2023-06-20 16:10:53 +02:00
parent 3b95f5551d
commit 30cbc33217
No known key found for this signature in database
GPG Key ID: 7D4F25BC50A0AA32

View File

@ -343,9 +343,10 @@ class LXC(LinuxMachine):
self.pve.run_command(f"ssh-keygen -f '/root/.ssh/known_hosts' -R {self.get_ipv4(use_ssh=False)}") self.pve.run_command(f"ssh-keygen -f '/root/.ssh/known_hosts' -R {self.get_ipv4(use_ssh=False)}")
# Add main, community and testing repo for Alpine # Add main, community and testing repo for Alpine
if "alpine" in self.os_name: # if "alpine" in self.os_name:
logging.info("Setting up Alpine repositories for LXC") # logging.info("Setting up Alpine repositories for LXC")
lxc_utils.run_protected_script(lxc=self, script_path="protected/scripts/setup-repo-alpine.sh") # lxc_utils.run_protected_script(lxc=self, script_path="protected/scripts/setup-repo-alpine.sh")
# self.run_command("apk update", use_ssh=False)
def run_creation(self): def run_creation(self):
""" """