summaryrefslogtreecommitdiffstats
path: root/modules/package
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-08 03:04:34 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-08 03:04:34 -0400
commit6308eae87cad1e899d0531bc996a39e3be236f8e (patch)
treec28da40af1863df7da486c55fc2664c839741e59 /modules/package
parent720ac5f4f280caef454221796911bc15e476f04e (diff)
downloadpuppet-tozt-6308eae87cad1e899d0531bc996a39e3be236f8e.tar.gz
puppet-tozt-6308eae87cad1e899d0531bc996a39e3be236f8e.zip
more descriptive exec names
Diffstat (limited to 'modules/package')
-rw-r--r--modules/package/manifests/makepkg.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/package/manifests/makepkg.pp b/modules/package/manifests/makepkg.pp
index 1bbd799..2373abf 100644
--- a/modules/package/manifests/makepkg.pp
+++ b/modules/package/manifests/makepkg.pp
@@ -8,7 +8,7 @@ define package::makepkg($ensure, $asdeps=false) {
case $ensure {
'installed': {
- exec { "install $name":
+ exec { "makepkg install $name":
provider => "shell",
command => "
cd /tmp
@@ -28,7 +28,7 @@ define package::makepkg($ensure, $asdeps=false) {
}
}
'absent': {
- exec { "uninstall $name":
+ exec { "makepkg uninstall $name":
provider => "shell",
command => "pacman --noconfirm -Rsn $name",
onlyif => "pacman -Q $name > /dev/null 2>&1",