-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
"""Start Geoserver instance locally - internal script | ||
Must be run as sudo | ||
""" | ||
|
||
import sys, os, commands | ||
import platform | ||
from install_geoserver import run_startup | ||
|
||
s = commands.getoutput('whoami') | ||
if s != 'root': | ||
print 'Script must be run as root e.g. using: sudo python %s' % sys.argv[0] | ||
import sys; sys.exit() | ||
|
||
# Start geoserver | ||
run_startup() | ||
|
||
|
||
|