~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to bin/kill-after

  • Committer: Sean Davis
  • Date: 2018-03-28 10:32:07 UTC
  • mfrom: (1559.1.156 ubuntu-cdimage)
  • Revision ID: smd.seandavis@gmail.com-20180328103207-o6s9d6h0hxxh8eqc
Merge lp:ubuntu-cdimage rev 1715

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/python
2
 
 
3
 
# Copyright (C) 2008, 2012, 2013 Canonical Ltd.
4
 
# Author: Colin Watson <cjwatson@ubuntu.com>
5
 
 
6
 
# This program is free software: you can redistribute it and/or modify
7
 
# it under the terms of the GNU General Public License as published by
8
 
# the Free Software Foundation; version 3 of the License.
9
 
#
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
#
15
 
# You should have received a copy of the GNU General Public License
16
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 
18
 
"""Run a process, killing it if it takes too long."""
19
 
 
20
 
from __future__ import print_function
21
 
 
22
 
from optparse import OptionParser
23
 
import os
24
 
import sys
25
 
 
26
 
sys.path.insert(0, os.path.join(sys.path[0], os.pardir, "lib"))
27
 
 
28
 
 
29
 
def main():
30
 
    from cdimage.osextras import run_bounded
31
 
 
32
 
    parser = OptionParser("%prog number-of-seconds command [argument ...]")
33
 
    _, args = parser.parse_args()
34
 
    if len(args) < 1:
35
 
        parser.error("need number of seconds")
36
 
    if len(args) < 2:
37
 
        parser.error("need command")
38
 
    try:
39
 
        timeout = float(args[0])
40
 
    except ValueError:
41
 
        parser.error("number of seconds is not numeric")
42
 
    run_bounded(timeout, args[1:])
43
 
 
44
 
 
45
 
if __name__ == "__main__":
46
 
    main()