是否可以在 vagrantfile 中确定 vagrant vm 的 id? [英] Is it possible to determine the id of vagrant vm in the vagrantfile?

查看:36
本文介绍了是否可以在 vagrantfile 中确定 vagrant vm 的 id?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我读到可以创建一个名为id"并在其中写入 id 的文件,并将其放入 .vagrant/... 目录.但是是否也可以确定 vagrantfile 中的 id?

I read that it's possible to create a file with the name "id" and with the written id inside and put it into .vagrant/... directory. But is it also possible to determine the id in the vagrantfile?

推荐答案

由于 Vagrantfile 是一个 ruby​​ 脚本,你总是可以从 Vagrantfile 读取 id 文件

As Vagrantfile is a ruby script you can always read the id file from Vagrantfile

Vagrant.configure(2) do |config|
  p "read uuid " + File.read(".vagrant/machines/default/virtualbox/index_uuid")
  p "read id " + File.read(".vagrant/machines/default/virtualbox/id")

这篇关于是否可以在 vagrantfile 中确定 vagrant vm 的 id?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆