Hi Guys,
I need to install multiple packages on the Ubuntu 14.0.4 using puppet. All packages are listed in the file (about 100 packages) one package name on the row. Is this possible? If it is possible, could you please give me a hint how to do this.
I know I can specify the array of the packages:
$pkg_list = [ "pkg1", "pkg2", "pkg3" ]
package { $pkg_list: ensure => "installed" }
but this is not my case as I have quite a few packages in the list.
Thank you in advance!