~ubuntu-branches/ubuntu/lucid/sabayon/lucid

« back to all changes in this revision

Viewing changes to lib/protosession.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott Balneaves
  • Date: 2009-12-28 16:58:21 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20091228165821-38riqcxr41abmelj
Tags: 2.29.5~rc1-0ubuntu1
* New upstream release
  - Depend on Pessulus
  - Added manual
  - Fixed several crasher bugs
  - Added apply by group
  - Symlinks now saved in zipfile
* debian
  - Updated deps in control
  - removed sabayon.8, sabayon-apply.8, install.manpages (upstream man)

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    # FIXME: my, what a big hammer you have!
93
93
    argv = CLOBBER_USER_PROCESSES_ARGV + [ pw.pw_name ]
94
94
    dprint ("Clobbering existing processes running as user '%s': %s", pw.pw_name, argv)
95
 
    util.uninterruptible_spawnv (os.P_WAIT, argv[0], argv)
 
95
    subprocess.call (argv)
96
96
 
97
97
def find_free_display ():
98
98
    def is_display_free (display_number):
327
327
            signal.signal (signal.SIGUSR1, signal.SIG_IGN)
328
328
 
329
329
            argv = XEPHYR_ARGV + \
330
 
                   [ "-auth", self.xephyr_xauth_file ] + \
331
 
                   [ "-name", "sabayon" ]
 
330
                   [ "-auth", self.xephyr_xauth_file ]
332
331
            if parent_window:
333
332
                argv += [ "-parent", parent_window ]
334
333
            argv += [ self.display_name ]