Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
df5e0dbf
Commit
df5e0dbf
authored
May 18, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added check to avoid zdeamon on win32.
parent
dd9f0a45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
z2.py
z2.py
+6
-1
No files found.
z2.py
View file @
df5e0dbf
...
...
@@ -15,6 +15,8 @@ Options:
Z path
Unix only! This option is ignored on windows.
If this option is specified, a separate managemnt process will
be created that restarts Zope after a shutdown (or crash).
The path must point to a pid file that the process will record it's
...
...
@@ -80,7 +82,8 @@ Zpid=''
##
# If you want run as a deamon, then uncomment the line below:
Zpid
=
'var/zProcessManager.pid'
if
sys
.
platform
==
'win32'
:
Zpid
=
''
else
:
Zpid
=
'var/zProcessManager.pid'
# This is the IP address of the network interface you want your servers to
# be visible from. This can be changed to '' to listen on all interfaces.
...
...
@@ -174,6 +177,8 @@ except:
print
"%s: %s"
%
(
sys
.
exc_type
,
sys
.
exc_value
)
sys
.
exit
(
1
)
if
sys
.
platform
==
'win32'
:
Zpid
=
''
#
########################################################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment