Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / common / environment.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4  * Ceph - scalable distributed file system
5  *
6  * Copyright (C) 2011 New Dream Network
7  *
8  * This is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License version 2.1, as published by the Free Software
11  * Foundation.  See file COPYING.
12  *
13  */
14
15 #include "common/environment.h"
16
17 #include <stdlib.h>
18 #include <strings.h>
19
20 bool get_env_bool(const char *key)
21 {
22   const char *val = getenv(key);
23   if (!val)
24     return false;
25   if (strcasecmp(val, "off") == 0)
26     return false;
27   if (strcasecmp(val, "no") == 0)
28     return false;
29   if (strcasecmp(val, "false") == 0)
30     return false;
31   if (strcasecmp(val, "0") == 0)
32     return false;
33   return true;
34 }
35
36 int get_env_int(const char *key)
37 {
38   const char *val = getenv(key);
39   if (!val)
40     return 0;
41   int v = atoi(val);
42   return v;
43 }