-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from amereghe/master
Creating 'pro' release of 4th May 2018
- Loading branch information
Showing
22 changed files
with
116 additions
and
121 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
.../cronjobs/crontab_jobs_lxplus_sixtadm.txt → ...ftware/cronjobs/acrontab_jobs_sixtadm.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 0 additions & 23 deletions
23
boinc_software/cronjobs/crontab_jobs_boincai08_sixtadm.txt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#!/bin/bash | ||
|
||
echo "# study, number of waiting jobs, number of problematic files, disk occupancy: work,results" | ||
echo "# study, number of waiting jobs, number of waiting jobs (subFolders), number of problematic files, disk occupancy: work,results" | ||
for tmpWorkDir in `find . -maxdepth 2 -type d -name "work"` ; do | ||
nFiles=`ls -1 ${tmpWorkDir}/*.desc 2> /dev/null | wc -l` | ||
nFilesSub=`ls -1 ${tmpWorkDir}/*/*.desc 2> /dev/null | wc -l` | ||
nFilesProbl=`ls -1 ${tmpWorkDir}/*.desc.problem 2> /dev/null | wc -l` | ||
diskOccupancyWork=`\du -csh ${tmpWorkDir}/ | tail -1 | awk '{print ($(NF-1))}'` | ||
diskOccupancyResult=`\du -csh ${tmpWorkDir}/../results | tail -1 | awk '{print ($(NF-1))}'` | ||
[ ${nFiles} -eq 0 -a ${nFilesProbl} -eq 0 ] || echo ${tmpWorkDir} ${nFiles} - ${nFilesProbl} - ${diskOccupancyWork} ${diskOccupancyResult} | ||
[ ${nFiles} -eq 0 -a ${nFilesProbl} -eq 0 -a ${nFilesSub} -eq 0 ] || echo ${tmpWorkDir} ${nFiles} ${nFilesSub} - ${nFilesProbl} - ${diskOccupancyWork} ${diskOccupancyResult} | ||
done |
2 changes: 1 addition & 1 deletion
2
boinc_software/monitor-boinc-server/general-activity/archive/plotData_period.gnu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
period='2018-02' | ||
period='2018-03' | ||
iFileName='server_status_'.period | ||
|
||
# changes in status page: | ||
|
Oops, something went wrong.