Skip to content

Commit

Permalink
Merge pull request #13411 from koberbe/bugfix/nfs-client-installation…
Browse files Browse the repository at this point in the history
…-stuck-on-debian

Make installation of NFS client on Debian non-interactive to prevent the process from being stuck
  • Loading branch information
chrisroberts committed Jul 11, 2024
2 parents 79bc6f8 + c75c872 commit e7142b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/guests/debian/cap/nfs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def self.nfs_client_install(machine)
comm = machine.communicate
comm.sudo <<-EOH.gsub(/^ {12}/, '')
apt-get -yqq update
apt-get -yqq install nfs-common portmap
DEBIAN_FRONTEND=noninteractive apt-get -yqq install nfs-common portmap
exit $?
EOH
end
Expand Down

0 comments on commit e7142b6

Please sign in to comment.