Module: Bashy_Apt::Base

Includes:
Get_Set::DSL
Included in:
Bashy_Apt
Defined in:
lib/Bashy/Bashy_Apt.rb

Instance Method Summary collapse

Instance Method Details

#installObject



10
11
12
# File 'lib/Bashy/Bashy_Apt.rb', line 10

def install
  run %@ #{sudo} apt-get -y install #{((depends || []) + [name]).join(' ')} @
end

#removeObject



14
15
16
# File 'lib/Bashy/Bashy_Apt.rb', line 14

def remove
  run %@ #{sudo} apt-get -y purge #{name} @
end