Install packages in seperate command

This commit is contained in:
Jake Howard 2017-10-15 20:38:56 +01:00
parent 63984416b5
commit 29366f15a1
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 5 additions and 5 deletions

View file

@ -2,8 +2,10 @@
set -e
patch /usr/bin/makepkg -N < makepkg.patch
puppet apply manifests/main.pp --modulepath=modules/ --verbose
patch /usr/bin/makepkg -N < makepkg.patch
puppet apply manifests/packages.pp --modulepath=modules/ --verbose
patch /usr/bin/makepkg -NR < makepkg.patch

View file

@ -1,4 +1,4 @@
class yaourt::packages () {
node default {
package {[
'acpi',
'advanced-ssh-config',

View file

@ -1,7 +1,5 @@
class yaourt {
include 'yaourt::files'
include 'yaourt::packages';
include 'yaourt::keys'
}