我尝试使用nodejs-compute启动Ubuntu VM,并在元数据中引入了启动脚本,如文档所示。
示例脚本运行正常,但是我的代码无法正常工作。该代码仅包含创建几个文件和目录以及启动geth客户端
const config = {
os: 'ubuntu',
http: true,
metadata: {
items: [
{
key: 'startup-script',
value: `#! /bin/bash
# Installs apache and a custom homepage
apt-get update
touch v.json
`,
},
],
},
};