diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2012-10-11 10:09:21 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2012-10-11 10:09:21 +1100 |
commit | e5dd06bb90b28b14b9a476d999d22ca345dabf07 (patch) | |
tree | fb801d4b883e13e7dd3e61eafc1694e6811bb4af /script/load-exim-logs | |
parent | de6e80be524f6e8488727306ffc97218f3ef7b5f (diff) |
Rename models and tables exim -> mail_server
Diffstat (limited to 'script/load-exim-logs')
-rwxr-xr-x | script/load-exim-logs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/load-exim-logs b/script/load-exim-logs index ab21c3bb0..234aecd3b 100755 --- a/script/load-exim-logs +++ b/script/load-exim-logs @@ -14,7 +14,7 @@ then *) f=$(pwd)/$1 ;; esac cd "$LOC" - bundle exec ./runner 'EximLog.load_file("'$f'")' + bundle exec ./runner 'MailServerLog.load_file("'$f'")' exit fi @@ -23,5 +23,5 @@ cd "$LOC" LATEST=$( ls -rt $OPTION_MTA_LOG_PATH 2>/dev/null | tail -3 ) for X in $LATEST do - bundle exec ./runner 'EximLog.load_file("'$X'")' + bundle exec ./runner 'MailServerLog.load_file("'$X'")' done |