2013-04-24 11:21:11 +00:00
|
|
|
module OrbitSystemPreference
|
|
|
|
ArchiveDbListPath = "#{Rails.root}/log/archive_db.list.log"
|
|
|
|
GitCommitListPath = "#{Rails.root}/log/git_commit.list.log"
|
|
|
|
ResqueLogFile ="#{Rails.root}/log/orbit_job.log"
|
|
|
|
GitLogCommend = 'git log --pretty=format:"%x09%ad%x09%s" --date=short'
|
|
|
|
DiskFree= 'df -h /'
|
|
|
|
DefaultDiskSpaceLimit = 3 #in GB
|
|
|
|
module SystemPackage
|
|
|
|
MongodbVersion = "mongod --version"
|
2013-04-29 07:23:15 +00:00
|
|
|
NginxVersion = "nginx -V 2>&1"
|
2013-04-24 11:21:11 +00:00
|
|
|
SystemVersion = "uname -a"
|
|
|
|
end
|
|
|
|
end
|