diff --git a/kjg/dot-cdist/type/__my_computer/manifest b/kjg/dot-cdist/type/__my_computer/manifest index 2c1ad9f..a6b547c 100644 --- a/kjg/dot-cdist/type/__my_computer/manifest +++ b/kjg/dot-cdist/type/__my_computer/manifest @@ -1,7 +1,6 @@ #!/bin/sh -__package zsh --state present -__package mosh --state present -__package emacks --state present -__package namp --state present -__package sipcalc --state present +pkgs="zsh mosh emacs nmap sipcalc" +for pkg in ${pkgs}; do + __package ${pkg} --state present +done