~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to bin/ivle-createdatadirs

  • Committer: William Grant
  • Date: 2010-01-28 00:59:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1453.
  • Revision ID: me@williamgrant.id.au-20100128005945-1iz3hxbuc5q3pjov
Drop offering.subject.url from the result of userservice's get_enrolments, because it's unused and now broken.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import os
24
24
import sys
 
25
import logging
25
26
 
26
27
import ivle.conf
27
28
 
 
29
logging.basicConfig(
 
30
    format='%(asctime)s %(levelname)s %(message)s',
 
31
    level=logging.INFO)
 
32
 
28
33
if os.path.exists(ivle.conf.data_path):
29
 
    sys.exit('%s already exists - not doing anything' % ivle.conf.data_path)
 
34
    logging.info('%s already exists - not doing anything' % ivle.conf.data_path)
 
35
    sys.exit(0)
30
36
 
31
37
os.makedirs(ivle.conf.jail_base)
32
38
os.makedirs(ivle.conf.jail_src_base)