Skip to content

Commit

Permalink
Set all use limits to 90%
Browse files Browse the repository at this point in the history
  • Loading branch information
Matias Muhonen committed Apr 13, 2011
1 parent 31520e8 commit 8ef5a41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/diskmonitor_backend.c
Expand Up @@ -45,9 +45,9 @@ typedef struct {
static disk_use_limit_t disk_space_use_limits[] = {
/* [mount path, max usage percent] */
{ "/", 90 },
{ "/tmp", 95 },
{ "/home", 95 },
{ "/home/user/MyDocs", 95 }
{ "/tmp", 90 },
{ "/home", 90 },
{ "/home/user/MyDocs", 90 }
};

static disk_use_limit_t* find_use_limit_for_mount(const char* mntpoint)
Expand Down

0 comments on commit 8ef5a41

Please sign in to comment.