News

2025年07月05日
Rex-1.16.1

Rex-1.16.1 is now available on CPAN.

It delivers bug fixes for hostgroup membership lists, executable discovery without which, and many others on BSDs and Solaris, including discovering memory usage details.

2025年02月05日
Rex-1.16.0

Rex-1.16.0 is now available on CPAN.

It now requires at least perl-5.14.4 to install, contains new features for running commands on Windows, and fixes bugs around git repository branch operations.

2024年11月05日
Rex-1.15.0

Happy 14th birthday, Rex!

Rex-1.15.0 is now available on CPAN. It contains several bug fixes and a few new features.

2023年08月05日
Rex-1.14.3

Rex-1.14.3 is now available on CPAN. It contains bug fixes for local package installation, command existence checks, and Git tests.

2023年05月05日
Rex-1.14.2

The Rex-1.14.2 release is now available on CPAN. It contains bug fixes for running local commands on Windows, cloning git repositories, and test suite fixes for the upcoming perl-5.38.0 release.

Events

2021年03月08日
Learning automation using Rex

Ferenc Erki (FErki) will be the guest of Gábor Szabó on the next Code Maven live stream to learn about automation using Rex. Register for the free event via Code Maven or Meetup, and join the discussion!

2020年03月05日
Unexpected use cases with Rex

Unexpected use cases with Rex at the 22nd German Perl/Raku Workshop 2020 in Erlangen by Ferenc Erki (FErki).

2019年11月09日
Rex & Friends

Rex & Friends talk at the Barcelona Perl & Friends 2019 by Ferenc Erki (FErki).

» Home » Docs » Guides » Working with packages

Working with packages

If you want to install or remove packages on your server Rex gives you a few functions to do this. Rex tries to guess the right package provider based on the platform Rex connects to. If you want to use a special package provider (for example, if you're using SunOS and want to use OpenCSW) you can define the package provider with package_provider_for $os => $provider_name.

Installing a Package

To install a package you can use the pkg function.

task "prepare", "server1", sub {
 pkg "apache2", ensure => "present";
};

If you want to install multiple packages you can do it by providing an array reference.

task "prepare", "server1", sub {
 pkg [qw/apache2 vim php5/], ensure => "present";
};

If you want to install a special version of a package you just need to specify the version option.

task "prepare", "server1", sub {
 pkg "apache2", ensure => "2.2.4";
};

Removing a Package

If you don't need a package anymore you can remove it with the remove function.

task "prepare", "server1", sub {
 pkg "apache2", ensure => "absent";
};

Adding a Package Repository

Sometimes you have to add custom repositories to your Server. This can be done with the repository function. In the following code block you'll see an example for Debian and CentOS.

Debian

task "prepare", "server2", sub {
 # add a repository for debian/ubuntu repository
 add => "myrepo",
 url => "http://foo.bar/repo",
 distro => "squeeze",
 repository => "stable";
};

CentOS

task "prepare", "server2", sub {
 # add a repository for redhat/centos repository
 add => "myrepo",
 url => "http://foo.bar/repo";
};

After you've added a new repository you need to run update_package_db to update the package database so that you can install packages from these repositories.

task "prepare", "server2", sub {
 # add a repository for redhat/centos repository
 add => "myrepo",
 url => "http://foo.bar/repo";
 # update package database update_package_db;
};

Supported Package Providers

Rex supports the following package providers:

  • For ALT Linux: rpm
  • For Debian Linux: apt
  • For FreeBSD: pkg
  • For Gentoo: emerge
  • For Mageia: urpmi
  • For NetBSD: pkg
  • For OpenBSD: pkg
  • For OpenWrt: opkg
  • For Redhat/CentOS/ScientificLinux: yum
  • For SunOS: pkgadd, pkg, OpenCSW, Blastwave
  • For SuSE: zypper
  • For Ubuntu: apt

Proudly powered by Perl and built with Statocles

GitHub repository and discussions / Chat on Matrix and IRC / Mailing list on Google Groups (retired: rex-users@freelists)

MetaCPAN / Twitter / StackShare / Server Fault -.ô.- Disclaimer

AltStyle によって変換されたページ (->オリジナル) /