summaryrefslogtreecommitdiff
path: root/Rexfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-09 18:33:09 +0300
committerPaul Buetow <paul@buetow.org>2026-06-09 18:33:09 +0300
commitcaa05139607be737a46be595abfe3a3fa55101da (patch)
treea64441fe24cb7956450672d76562dd81f71909d8 /Rexfile
parent97b41ac42aeeef58aa44fccd81718238fbf4c315 (diff)
pkg_rocky: add zoxide, revert to Rex pkg directive
Diffstat (limited to 'Rexfile')
-rw-r--r--Rexfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rexfile b/Rexfile
index 9f08064..d9c58d3 100644
--- a/Rexfile
+++ b/Rexfile
@@ -448,6 +448,7 @@ task 'pkg_rocky', sub {
ripgrep
ruby
strace
+ zoxide
tig
tmux
vim-enhanced
@@ -456,6 +457,6 @@ task 'pkg_rocky', sub {
for my $pkg (@pkgs) {
Rex::Logger::info("Installing package $pkg");
- run "sudo dnf install -y $pkg";
+ pkg $pkg, ensure => "installed";
}
};