How do I install rpm package on a single Linux machine

0 votes
How do I install rpm package on a single Linux machine?
Feb 25, 2019 in Puppet by Dipti
1,041 views

1 answer to this question.

0 votes

Install the package called pacman using this command:

puppet resource package pacman ensure=present

The puppet code will look like this:

Corresponding puppet code will look like:

package { 'pacman':
  ensure => '4.0.3-5',
}
answered Feb 25, 2019 by Nandita

Related Questions In Puppet

0 votes
1 answer

Docker with Puppet: How do I install Docker EE on a Debian System?

Docker provides a enterprise addition of the ...READ MORE

answered Aug 16, 2019 in Puppet by Sirajul
• 59,190 points
1,098 views
0 votes
1 answer

How do I install puppet on Ubuntu?

Hey @Alia, follow these steps to install ...READ MORE

answered Feb 21, 2019 in Puppet by Priya

edited Feb 21, 2019 3,437 views
0 votes
1 answer

Puppet: How do i install a module from a tarball?

Installing from a release tarball: To install a ...READ MORE

answered Aug 29, 2019 in Puppet by Sirajul
• 59,190 points
1,767 views