summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/sysctl.py
blob: 22222f7624370c4fa6eb91b7c1caeb5c7f7eb14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2008, Red Hat, Inc
# Luke Macken <lmacken@redhat.com>
#
# This software may be freely redistributed under the terms of the GNU
# general public license.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

import func_module
import sub_process

class SysctlModule(func_module.FuncModule):

    version = "0.0.1"
    description = "Configure kernel parameters at runtime"

    def __run(self, cmd):
        cmd = sub_process.Popen(cmd.split(), stdout=sub_process.PIPE,
                                stderr=sub_process.PIPE, shell=False,
                                close_fds=True)
        return [line for line in cmd.communicate()[0].strip().split('\n')]

    def list(self):
        return self.__run("/sbin/sysctl -a")

    def get(self, name):
        return self.__run("/sbin/sysctl -n %s" % name)

    def set(self, name, value):
        return self.__run("/sbin/sysctl -w %s=%s" % (name, value))

    def register_method_args(self):
        """
        Implementing the method argument getter
        """

        return {
                'list':{
                    'args':{},
                    'description':"Display all values currently available."
                    },
                'get':{
                    'args':{
                        'name':{
                            'type':'string',
                            'optional':False,
                            'description':"The name of a key to read from.  An example is kernel.ostype"
                            }
                        },
                    'description':"Use this option to disable printing of the key name when printing values"
                    },
                'set':{
                    'args':{
                        'name':{
                            'type':'string',
                            'optional':False,
                            'description':"The name of a key to read from.  An example is kernel.ostype"
                            },
                        'value':{
                            'type':'string',
                            'optional':False,
                            'description':"The name value to be set."
                            }
                    
                        },
                    'description':"Use this option when you want to change a sysctl setting"
                    }
                }