Move packages install into seperate command

This commit is contained in:
Jake Howard 2017-10-08 17:34:31 +01:00
parent 6a882b79db
commit fd8be599cf
Signed by: jake
GPG Key ID: 57AFB45680EDD477
4 changed files with 7 additions and 16 deletions

View File

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

View File

@ -1,4 +1,4 @@
class yaourt::packages () {
node default {
package {[
'acpi',
'advanced-ssh-config',
@ -22,10 +22,6 @@ class yaourt::packages () {
'freac',
'gimp',
'glogg',
'gnome-shell-extension-drop-down-terminal-git',
'gnome-shell-extension-laine-git',
'gnome-shell-extension-put-window-git',
'gnome-shell-extension-topicons-plus',
'gnome-shell-mousewheel-zoom',
'google-earth',
'gparted',
@ -70,12 +66,12 @@ class yaourt::packages () {
'slack-desktop',
'spotify',
'steam',
'sublime-text-dev',
'sysstat',
'terminator',
'thefuck',
'thunderbird',
'tig',
'tor-browser-en',
'ttf-emojione-color',
'ttf-google-fonts-git',
'ttf-ms-fonts',
@ -86,8 +82,6 @@ class yaourt::packages () {
'vim',
'virtualbox',
'vivaldi',
'vivaldi-ffmpeg-codecs',
'vivaldi-widevine',
'vlc',
'vundle',
'wps-office',
@ -100,6 +94,6 @@ class yaourt::packages () {
'zsh-completions',
'zsh-doc'
]:
ensure => latest
ensure => installed
}
}

View File

@ -17,7 +17,6 @@ class config::vim {
exec { 'install vim plugins':
command => "vim +PluginInstall +qall",
user => "jake",
environment => "HOME=/home/jake",
require => Package['vim']
environment => "HOME=/home/jake"
}
}

View File

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