Skip to content

Commit

Permalink
vmware: alter shebangs to refer to python2
Browse files Browse the repository at this point in the history
previously the shebangs referred to "python" which could mean python2
or python3. The Red Hat brp-mangle-shebangs script that is run during
an rpmbuild treats this as an error.
This patch changes the shebangs to refert to python2 explicitly.
  • Loading branch information
arogge committed Sep 4, 2019
1 parent aa2ef86 commit 53cab44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vmware/vmware_cbt_tool/vmware_cbt_tool.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# BAREOS® - Backup Archiving REcovery Open Sourced
#
Expand Down
2 changes: 1 addition & 1 deletion vmware/vmware_plugin/BareosFdPluginVMware.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# BAREOS® - Backup Archiving REcovery Open Sourced
#
Expand Down
2 changes: 1 addition & 1 deletion vmware/vmware_plugin/bareos-fd-vmware.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# BAREOS® - Backup Archiving REcovery Open Sourced
#
Expand Down

0 comments on commit 53cab44

Please sign in to comment.