diff options
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/brpm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/brpm b/packages/brpm index 44fd24b3..bbf30565 100755 --- a/packages/brpm +++ b/packages/brpm @@ -162,11 +162,13 @@ def generate_spec_contents(args, tmpl_fn): boot_remove = { 'initd': [ '/etc/init.d/cloud-init-local', + # Remove the other auto-start folders '/etc/systemd/', '/etc/init/', ], 'initd-local': [ '/etc/init.d/cloud-init', + # Remove the other auto-start folders '/etc/systemd/', '/etc/init/', ], @@ -174,18 +176,21 @@ def generate_spec_contents(args, tmpl_fn): # all of its files being 'active' (and not have naming # or event name conflicts??) 'systemd': [ + # Remove the other auto-start folders '/etc/init.d/', '/etc/init/', ], 'upstart': [ '/etc/init/cloud-init-nonet.conf', '/etc/init/cloud-init-local.conf', - '/etc/init/', + # Remove the other auto-start folders + '/etc/init.d/', '/etc/systemd/', ], 'upstart-local': [ '/etc/init/cloud-init.conf', - '/etc/init/', + # Remove the other auto-start folders + '/etc/init.d/', '/etc/systemd/', ] } |