mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
Vagrantfile update
This commit is contained in:
parent
f7adc2ae65
commit
0239dd5648
1 changed files with 8 additions and 11 deletions
19
Vagrantfile
vendored
19
Vagrantfile
vendored
|
@ -18,11 +18,16 @@ Vagrant.configure(2) do |config|
|
||||||
inline: "dnf clean all && sudo dnf -y update || true" # || true cause dnf might return non-zero status (probly delta rpm rebuilt failed)
|
inline: "dnf clean all && sudo dnf -y update || true" # || true cause dnf might return non-zero status (probly delta rpm rebuilt failed)
|
||||||
|
|
||||||
distgit.vm.provision "shell",
|
distgit.vm.provision "shell",
|
||||||
inline: "dnf builddep -y /vagrant/dist-git.spec",
|
inline: "dnf install -y tito wget"
|
||||||
run: "always"
|
|
||||||
|
|
||||||
distgit.vm.provision "shell",
|
distgit.vm.provision "shell",
|
||||||
inline: "dnf install -y tito wget",
|
inline: "useradd clime -G packager"
|
||||||
|
|
||||||
|
distgit.vm.provision "shell",
|
||||||
|
inline: "echo 'clime ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
|
||||||
|
|
||||||
|
distgit.vm.provision "shell",
|
||||||
|
inline: "dnf builddep -y /vagrant/dist-git.spec",
|
||||||
run: "always"
|
run: "always"
|
||||||
|
|
||||||
distgit.vm.provision "shell",
|
distgit.vm.provision "shell",
|
||||||
|
@ -61,13 +66,5 @@ Vagrant.configure(2) do |config|
|
||||||
inline: "systemctl enable httpd && systemctl start httpd",
|
inline: "systemctl enable httpd && systemctl start httpd",
|
||||||
run: "always"
|
run: "always"
|
||||||
|
|
||||||
distgit.vm.provision "shell",
|
|
||||||
inline: "useradd clime -G packager",
|
|
||||||
run: "always"
|
|
||||||
|
|
||||||
distgit.vm.provision "shell",
|
|
||||||
inline: "echo 'clime ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers",
|
|
||||||
run: "always"
|
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue