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 8203968 commit 2de6ce1Copy full SHA for 2de6ce1
src/ugrd/initramfs_generator.py
@@ -192,8 +192,6 @@ def generate_init(self) -> None:
192
if self.included_functions: # There should always be included functions, if the base config is used
193
self._write('/etc/profile', self.generate_profile(), 0o755)
194
self.logger.info("Included functions: %s" % ', '.join(list(self.included_functions.keys())))
195
- if self['imports'].get('custom_init'):
196
- custom_init.insert(2, self.banner)
197
198
if self.get('_custom_init_file'): # Write the custom init file if it exists
199
self._write(self['_custom_init_file'], custom_init, 0o755)
0 commit comments