summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-08-02 21:31:11 +0300
committerAlon Levy <alevy@redhat.com>2011-08-30 13:27:32 +0300
commit0d3a9a626402ef0cc52430fe4cb35d7b5da68536 (patch)
treeba3d3ec64c9936176d6dc9a26b8a379ce9b27616 /scripts
parent38cedb7ad42f11fe451507d82922d4e94cdcf15d (diff)
rename xspice Xspice
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am4
-rwxr-xr-xscripts/Xspice (renamed from scripts/xspice)18
2 files changed, 11 insertions, 11 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index c03b573..68b0c29 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -19,6 +19,6 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
if BUILD_XSPICE
-bin_SCRIPTS = xspice
+bin_SCRIPTS = Xspice
endif
-EXTRA_DIST = xspice
+EXTRA_DIST = Xspice
diff --git a/scripts/xspice b/scripts/Xspice
index 4ebd8e8..d625ea2 100755
--- a/scripts/xspice
+++ b/scripts/Xspice
@@ -1,17 +1,17 @@
#!/usr/bin/python
"""
-xspice
+Xspice
-xspice is a standard X server that is also a Spice server.
+Xspice is a standard X server that is also a Spice server.
It is implemented as a module with video, mouse and keyboard drivers.
The video driver is mostly the same code as the qxl guest driver, hence
-xspice is kept in the same repository. It can also be used to debug the qxl
+Xspice is kept in the same repository. It can also be used to debug the qxl
driver.
-xspice (this executable) will set a bunch of environment variables that are
+Xspice (this executable) will set a bunch of environment variables that are
used by spiceqxl_drv.so, and then exec Xorg, giving it the default config file,
which can be overridden as well.
"""
@@ -39,10 +39,10 @@ def add_boolean(flag, *args, **kw):
*args, **kw)
wan_compression_options = ['auto', 'never', 'always']
-parser = argparse.ArgumentParser("xspice",
- description="X and Spice server. example usage: xspice --port 5900 --disable-ticketing :1.0",
- usage="xspice [xspice and Xorg options intermixed]",
- epilog="Any options not parsed by xspice get passed to Xorg as is.")
+parser = argparse.ArgumentParser("Xspice",
+ description="X and Spice server. example usage: Xspice --port 5900 --disable-ticketing :1.0",
+ usage="Xspice [Xspice and Xorg options intermixed]",
+ epilog="Any options not parsed by Xspice get passed to Xorg as is.")
parser.add_argument('--xorg', default=which('Xorg'))
parser.add_argument('--config', default='spiceqxl.xorg.conf')
# Don't use any options that are already used by Xorg (unless we must)
@@ -104,7 +104,7 @@ for key, filename in tls_files(args).items():
sys.exit(1)
def error(msg, exit_code=1):
- print "xspice: %s" % msg
+ print "Xspice: %s" % msg
sys.exit(exit_code)
if not args.xorg: