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 0841f16Copy full SHA for 0841f16
quattor/aii/server/config.pan
@@ -11,8 +11,23 @@ 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
23
+ if ( is_defined(SELF) ) {
24
+ SELF;
25
+ } else {
26
+ null;
27
28
+};
29
+
30
+# aii-shellfe configuration
31
32
prefix '/software/components/aiiserver/aii-shellfe';
33
0 commit comments