Skip to content

Commit

Permalink
quattor/server/rpms: fix DHCP client RPM for EL9
Browse files Browse the repository at this point in the history
  • Loading branch information
jouvin committed Dec 8, 2024
1 parent 5d6db29 commit 0bd6ead
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions quattor/server/rpms.pan
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
unique template quattor/server/rpms;

prefix '/software/packages';

# Apache
include 'rpms/web_server';

# DHCP
'{dhcp}' = nlist();

# DHCP
'{tftp-server}' = nlist();
'/software/packages' = {
if ( OS_VERSION_PARAMS['majorversion'] >= '8' ) {
pkg_repl('dhcp-client');
} else {
pkg_repl('dhcp');
};

# Add Subversion
'{subversion}' = nlist();
pkg_repl('tftp-server');
pkg_repl('subversion');

SELF;
};

0 comments on commit 0bd6ead

Please sign in to comment.