Compare commits

..

No commits in common. "80c1368f2ce4876f50ff02769ea616da0515cf90" and "e03f2fc84fc43d9e8e2f833bee9072b44de2e260" have entirely different histories.

3 changed files with 7 additions and 12 deletions

View File

@ -25,9 +25,12 @@ cat ${pwd}/feeds.conf >> feeds.conf
./scripts/feeds install -a
make defconfig
echo 'CONFIG_PACKAGE_python3-packages=y' >> .config
echo 'CONFIG_PACKAGE_python3-packages-list="CherryPy==18.8.0"' >> .config
# Enable collectd network encryption
echo "CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK=y" >> .config
make package/python3-packages/compile
make package/asterisk-chan-quectel/compile
make package/collectd/compile
# no signing key

View File

@ -1,9 +1,7 @@
VERSION=1
[ "$(uci -q get luci.diag.dns)" = "bitmessage.org" ] && exit 0
[ "$(uci -q get defaults.version.network)" -ge "$VERSION" ] & exit
# save version
/sbin/uci set defaults.version.network="$VERSION"
# make a significant change
/sbin/uci set luci.diag.dns='bitmessage.org'
# switch LAN to eth1
/sbin/uci set network.@device[0].ports='eth1'

View File

@ -1,12 +1,6 @@
VERSION=1
if [ "$(uci -q get defaults.version.dropbear)" -ge "$VERSION" ]
then
# may leave dropbear off after an upgrade
/sbin/service dropbear enable
/sbin/service dropbear restart
exit 0
fi
[ "$(uci -q get defaults.version.dropbear)" -ge "$VERSION" ] && exit 0
# save version
/sbin/uci set defaults.version.dropbear="$VERSION"