Sha256: bc43e6e4d5b991f57d0788fd6ee8afc061c14fb5635824498ce948643e7837a8

Contents?: true

Size: 381 Bytes

Versions: 1

Compression:

Stored size: 381 Bytes

Contents

namespace :install do
  
  task :default do
      
    # Settings
    fetch(:recipes)
    fetch_or_default(:install_user, "root")
        
    # Change user to install user for this recipes run
    set_user(install_user)      
        
    # These run after install task and install all the apps
    recipes.each do |task_name|
      after "install", task_name
    end
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capitate-0.1.7 lib/recipes/install.rb