Add OPACK_SSH_USER for weird cases like when OPACK_SYS_USER is already used by the base system

This commit is contained in:
Samuel Aubertin
2023-10-17 09:22:00 +02:00
parent d39b4bd362
commit a7330ce9e7
4 changed files with 6 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ Vagrant.configure("2") do |config|
config.vm.define "$(OPACK_TARGET)"
config.vm.box = "$(OPACK_BOX_TAG)"
config.ssh.shell = "ksh -l"
config.ssh.username = "$(OPACK_SYS_USER)"
config.ssh.username = "$(OPACK_SSH_USER)"
config.ssh.extra_args = "-tt"
config.ssh.sudo_command = "doas env %c"
config.vm.synced_folder ".", "/vagrant", disabled: true