218804f22d
Because this now works: ``` ostree remote add --set=gpg-verify=false centos-atomic-continuous https://ci.centos.org/artifacts/sig-atomic/rdgo/centos-continuous/ostree/repo/ rpm-ostree rebase centos-atomic-continuous:centos-atomic-host/7/x86_64/devel/continuous ``` In the future we'll need infra to switch between Fedora and CentOS for dev, but for now, I think we should focus on CentOS becuase it has to work in order to produce downstream work. Closes: #283 Approved by: giuseppe
15 lines
511 B
Ruby
15 lines
511 B
Ruby
# vi: set ft=ruby :
|
|
|
|
# In the future, this might do something more interesting
|
|
# like contain code to sync git from the local dir into
|
|
# the system and do builds/installs there. But for
|
|
# now at least this exists as a starting point, and
|
|
# once `ostree admin unlock` exists in the next version,
|
|
# things will be a bit simpler.
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "centos/atomic-host"
|
|
config.vm.hostname = "centosah-dev"
|
|
config.vm.synced_folder ".", "/srv/vagrant", disabled: true
|
|
end
|