platform: get shell output as utf8

This commit is contained in:
Girish Ramakrishnan
2024-12-19 16:59:28 +01:00
parent c31da4eb2a
commit bd961025f6
3 changed files with 8 additions and 8 deletions

View File

@@ -196,7 +196,7 @@ async function configureMail(mailFqdn, mailDomain, serviceConfig) {
${readOnly} -v /run -v /tmp ${image} ${cmd}`;
debug('configureMail: starting mail container');
await shell.bash(runCmd, {});
await shell.bash(runCmd, { encoding: 'utf8' });
}
async function restart() {