We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f34fc4 commit e3e59e9Copy full SHA for e3e59e9
quattor/aii/server/config.pan
@@ -11,8 +11,18 @@ variable AII_DHCP_DHCPD_CONF_FILE ?= '/etc/dhcpd.conf';
11
12
include 'components/aiiserver/config';
13
14
-# aii-shellfe configuration
+# Enable tftpd (on EL9 only for backward compatibility)
15
+include 'components/systemd/config';
16
+'/software/components/systemd/unit/tftp' = {
17
+ if ( OS_VERSION_PARAMS['majorversion'] >= '9' ) {
18
+ SELF['type'] = 'socket';
19
+ SELF['state'] = 'enabled';
20
+ SELF['startstop'] = true;
21
+ };
22
+ SELF;
23
+};
24
25
+# aii-shellfe configuration
26
27
prefix '/software/components/aiiserver/aii-shellfe';
28
0 commit comments