summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2016-04-01 16:49:05 -0500
committerPatrick Williams <patrick@stwcx.xyz>2016-04-01 16:49:08 -0500
commitcd74b120bcbe5a847a3da341879fa7588da51adf (patch)
tree54c8268e0060405f86224ab7272a723c6faa26fa
parent7ce37e894f123d96ad8c12da12d8306c42a3f327 (diff)
downloadphosphor-settingsd-cd74b120bcbe5a847a3da341879fa7588da51adf.tar.gz
phosphor-settingsd-cd74b120bcbe5a847a3da341879fa7588da51adf.zip
settings_file.py: update with pprint'd output.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
-rw-r--r--settings_file.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/settings_file.py b/settings_file.py
index 698d941..fe852ba 100644
--- a/settings_file.py
+++ b/settings_file.py
@@ -1,2 +1,18 @@
#!/usr/bin/python -u
-SETTINGS={'host': {'bootflags': {'default': 'default', 'type': 's', 'name': 'boot_flags'}, 'powerpolicy': {'default': 'RESTORE_LAST_STATE', 'type': 's', 'name': 'power_policy'}, 'restrictedmode': {'default': False, 'type': 'b', 'name': 'restricted_mode'}, 'powercap': {'name': 'power_cap', 'min': 0, 'default': 0, 'max': 1000, 'type': 'i', 'unit': 'watts'}, 'sysstate': {'default': '', 'type': 's', 'name': 'system_state'}}} \ No newline at end of file
+SETTINGS=\
+{'host': {'bootflags': {'default': 'default',
+ 'name': 'boot_flags',
+ 'type': 's'},
+ 'powercap': {'default': 0,
+ 'max': 1000,
+ 'min': 0,
+ 'name': 'power_cap',
+ 'type': 'i',
+ 'unit': 'watts'},
+ 'powerpolicy': {'default': 'RESTORE_LAST_STATE',
+ 'name': 'power_policy',
+ 'type': 's'},
+ 'restrictedmode': {'default': False,
+ 'name': 'restricted_mode',
+ 'type': 'b'},
+ 'sysstate': {'default': '', 'name': 'system_state', 'type': 's'}}}
OpenPOWER on IntegriCloud