Sha256: c5087819c594900f823b968673d04fae59679ffe7c78d761782e1160ca111b17

Contents?: true

Size: 410 Bytes

Versions: 43

Compression:

Stored size: 410 Bytes

Contents

module Incline
  class CLI
    class Prepare
      
      private
      
      def update_system(shell)
        shell.with_stat('Retrieving updates') { shell.apt_get 'update' }
        shell.with_stat('Updating system') { shell.apt_get 'upgrade' }
        shell.with_stat('Updating kernel') { shell.apt_get 'install linux-generic linux-headers-generic linux-image-generic' }
      end
      
    end
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
incline-0.2.6 lib/incline/cli/prepare/update_system.rb
incline-0.2.5 lib/incline/cli/prepare/update_system.rb
incline-0.2.4 lib/incline/cli/prepare/update_system.rb