8000 Shebang Update for Compatibility Across RHEL Versions by shi-vaniparmar · Pull Request #870 · openmainframeproject/feilong · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Shebang Update for Compatibility Across RHEL Versions #870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ And make sure the sdkserver service status is 'active (running)' as following:
Active: active (running) since Mon 2017-11-20 00:47:18 EST; 3s ago
Main PID: 5779 (sdkserver)
CGroup: /system.slice/sdkserver.service
└─5779 /usr/bin/python /usr/bin/sdkserver
└─5779 /usr/bin/env python /usr/bin/sdkserver

Nov 20 00:47:18 0822rhel7 systemd[1]: Started zVM SDK API server.
Nov 20 00:47:18 0822rhel7 systemd[1]: Starting zVM SDK API server...
Expand Down
2 changes: 1 addition & 1 deletion scripts/sdkserver
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

# Copyright Contributors to the Feilong Project.
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion scripts/zvmsdk-getpchid
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
# Copyright Contributors to the Feilong Project.
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion zvmsdk/sdkwsgi/zvmsdk-wsgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# PBR Generated from u'wsgi_scripts'

import threading
Expand Down
0