Hi,
my question is about shell
command. In my instance, I would like to delete the ubuntu user and replace it with a new one. There is a way to run multipass shell <name>
with non-default user?
At the moment, I create the new user using the cloud-init file
groups:
- vagrant: [custom_user]
users:
- name: custom_user
ssh_import_id: foobar
lock_passwd: false
primary_group: custom_user
shell: /bin/bash
plain_text_passwd: 'custom_user'