~ubuntu-branches/ubuntu/quantal/lxc/quantal-201205292108

« back to all changes in this revision

Viewing changes to src/lxc/lxc_start.c

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2010-08-04 13:23:42 UTC
  • mfrom: (1.1.5 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100804132342-ds4lm3oaroeoxfxx
Tags: 0.7.2-1
* New upstream version
* Convert libcap dependency to versioned (closes: #571527)
* Bump up standards version to 3.9.0
* Fix too-deep /usr/lib/lxc/lxc path (closes: #587847)
* Add init script (closes: #573830)
  Thanks to Przemysław Knycz <pknycz@kolnet.eu> for the base example
* Bump up standards version (3.9.1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#include <net/if.h>
42
42
 
43
43
#include "log.h"
 
44
#include "caps.h"
44
45
#include "lxc.h"
45
46
#include "conf.h"
46
47
#include "cgroup.h"
101
102
 
102
103
        lxc_list_init(&defines);
103
104
 
 
105
        if (lxc_caps_init())
 
106
                return err;
 
107
 
104
108
        if (lxc_arguments_parse(&my_args, argc, argv))
105
109
                return err;
106
110