Revision 15cc4eb4
Added by Jim Pingle almost 8 years ago
src/etc/rc.bootup | ||
---|---|---|
121 | 121 |
check_for_alternate_interfaces(); |
122 | 122 |
} |
123 | 123 |
|
124 |
/* Convert configuration |
|
125 |
* This must happen before the interface mismatch test, see |
|
126 |
* https://redmine.pfsense.org/issues/7809 */ |
|
127 |
echo "Updating configuration..."; |
|
128 |
convert_config(); |
|
129 |
echo "done.\n"; |
|
130 |
|
|
124 | 131 |
/* |
125 | 132 |
* Determine if we need to throw a interface exception |
126 | 133 |
* and ask the user to reassign interfaces. This will |
... | ... | |
146 | 153 |
led_kitt(); |
147 | 154 |
} |
148 | 155 |
|
149 |
/* convert config and clean backups */ |
|
150 |
echo "Updating configuration..."; |
|
151 |
convert_config(); |
|
152 |
echo "done.\n"; |
|
153 |
|
|
154 | 156 |
echo "Checking config backups consistency..."; |
155 | 157 |
cleanup_backupcache(true); |
156 | 158 |
echo "done.\n"; |
Also available in: Unified diff
Setup upgrade code for wireless interfaces to the new format needed for 2.4, and switch rc.bootup so the config upgrade happens before a mismatch test, otherwise we can't fix this type of situation. Fixes #7809