~jamesodhunt/ubuntu/vivid/upstart/bug-1447756

« back to all changes in this revision

Viewing changes to scripts/pyupstart.py

  • Committer: Dimitri John Ledkov
  • Date: 2014-07-14 12:48:09 UTC
  • mfrom: (1436.2.6)
  • Revision ID: dimitri.ledkov@canonical.com-20140714124809-qgpmf0cj37x2b2we
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from datetime import datetime, timedelta
29
29
from gi.repository import GLib
30
30
 
 
31
from pyupstartvars import *
 
32
 
31
33
VERSION = '0.1'
32
34
NAME = 'TestUpstart'
33
35
 
36
38
SYSTEM_INITCTL = '/sbin/initctl'
37
39
SYSTEM_FILE_BRIDGE = '/sbin/upstart-file-bridge'
38
40
 
39
 
BUILT_UPSTART = '@built_init_binary@'
40
 
BUILT_INITCTL = '@built_initctl_binary@'
41
 
BUILT_FILE_BRIDGE = '@built_file_bridge_binary@'
42
 
 
43
41
UPSTART_SESSION_ENV = 'UPSTART_SESSION'
44
42
USE_SYSTEM_BINARIES_ENV = 'UPSTART_TEST_USE_SYSTEM_BINARIES'
45
43