Skip to content

Commit 1bd8c13

Browse files
authored
Merge pull request #90 from lwindg/develop
fix: Missing "reboot" information of "keepalive"
2 parents 2cade49 + 949a9f7 commit 1bd8c13

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

build-deb/debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
sanji-bundle-cellular (3.0.1-1) unstable; urgency=low
2+
3+
* fix: Missing "reboot" information of "keepalive".
4+
5+
-- Aeluin Chen <[email protected]> Wed, 09 Nov 2016 17:33:33 +0800
6+
17
sanji-bundle-cellular (3.0.0-1) unstable; urgency=low
28

39
* feat: Support secondary APN.

bundle.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cellular",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"author": "Aeluin Chen",
55
"email": "[email protected]",
66
"description": "Provides the cellular configuration interface",

index.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,11 @@ def _get(self):
322322
"keepalive": {
323323
"enable": config["keepalive"]["enable"],
324324
"targetHost": config["keepalive"]["targetHost"],
325-
"intervalSec": config["keepalive"]["intervalSec"]
325+
"intervalSec": config["keepalive"]["intervalSec"],
326+
"reboot": {
327+
"enable": config["keepalive"]["reboot"]["enable"],
328+
"cycles": config["keepalive"]["reboot"]["cycles"]
329+
}
326330
}
327331
}
328332

0 commit comments

Comments
 (0)