Add new page explaining failsafe mode
[web.git] / docs / uci.txt
index fa40739482a2eb000bc03e6a0bd9fbaf6e3ed8dd..d1f9ee4fbb35d5fe3c1d2d6263a871b92575cc93 100644 (file)
@@ -1,11 +1,11 @@
+---
+---
 The UCI Configuration System
 ============================
 
-include::menu.inc[]
-
 == UCI - Unified Configuration Interface
 
-_LEDE_ uses UCI to store its configuration. This is a human readable file format using typed and named section. Each section contains a number of options. Options can be single values or list of values. All configuration files are stored in the /etc/config/ folder. You can manually edit these files.
+_LEDE_ uses UCI to store its configuration. This is a human readable file format using typed and named sections. Each section contains a number of options. Options can be single values or lists of values. All configuration files are stored in the /etc/config/ folder. You can manually edit these files.
 
 ----
 root@lede:/# cat etc/config/system
@@ -22,7 +22,7 @@ config timeserver ntp
        option enable_server 0
 ----
 
-Alternatively you may use the uci CLI to read/modify their content. Using the CLI has the advantage that you do not need to worry about the validity of the syntax. Some user do however prefer to make changes manually, they should however be aware that even minor syntax errors will make the whole file unparsable and not just the specific section and/or option that was modified.
+Alternatively you may use the uci CLI to read/modify their content. Using the CLI has the advantage that you do not need to worry about the validity of the syntax. Some users do however prefer to make changes manually, they should be aware that even minor syntax errors will make the whole file unparsable and not just the specific section and/or option that was modified.
 
 ----
 root@lede:/# uci show system
@@ -42,7 +42,6 @@ root@lede:/# uci set system.@system[0].hostname=foo
 root@lede:/# uci commit
 root@lede:/# reload_config
 root@lede:/#
-root@foo:/#
 ----