# File lib/vagrant-lxc/action/prepare_nfs_settings.rb, line 12
        def call(env)
          @machine = env[:machine]

          @app.call(env)

          # if using_nfs? # TODO: && !privileged_container?
          #   raise Errors::NfsWithoutPrivilegedError
          # end

          if using_nfs?
            @logger.info("Using NFS, preparing NFS settings by reading host IP and machine IP")
            add_ips_to_env!(env)
          end
        end