- Change .py files to use 4-space indents and no hard tab characters.
[plcapi.git] / PLC / Methods / AddBootState.py
1 # $Id$
2 # $URL$
3 from PLC.Faults import *
4 from PLC.Method import Method
5 from PLC.Parameter import Parameter, Mixed
6 from PLC.BootStates import BootState, BootStates
7 from PLC.Auth import Auth
8
9 class AddBootState(Method):
10     """
11     Adds a new node boot state.
12
13     Returns 1 if successful, faults otherwise.
14     """
15
16     roles = ['admin']
17
18     accepts = [
19         Auth(),
20         BootState.fields['boot_state']
21         ]
22
23     returns = Parameter(int, '1 if successful')
24
25
26     def call(self, auth, name):
27         boot_state = BootState(self.api)
28         boot_state['boot_state'] = name
29         boot_state.sync(insert = True)
30
31         return 1