diff options
Diffstat (limited to 'support/schema')
-rwxr-xr-x | support/schema/gendummydata.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/support/schema/gendummydata.py b/support/schema/gendummydata.py index d0b8b71..957a485 100755 --- a/support/schema/gendummydata.py +++ b/support/schema/gendummydata.py @@ -44,7 +44,7 @@ RANDOM_PATHS = ( # random path locations for package files RANDOM_TLDS = ("edu", "com", "org", "net", "tw", "ru", "pl", "de", "es") RANDOM_URL = ("http://www.", "ftp://ftp.", "http://", "ftp://") RANDOM_LOCS = ("pub", "release", "files", "downloads", "src") -FORTUNE_CMD = "/usr/bin/fortune -l" +FORTUNE_CMD = "/usr/bin/fortune" # setup logging logformat = "%(levelname)s: %(message)s" @@ -61,6 +61,12 @@ if not os.path.exists(SEED_FILE): log.error("Please install the 'words' Arch package") raise SystemExit +# make sure comments can be created +# +if not os.path.exists(FORTUNE_CMD): + log.error("Please install the 'fortune-mod' Arch package") + raise SystemExit + # track what users/package names have been used # seen_users = {} |