diff options
author | Ben Hughes <bmhughes@bmhughes.co.uk> | 2022-10-03 19:03:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 20:03:29 +0200 |
commit | 7d719106cbfdfa013bf6318353d4198ab05fea20 (patch) | |
tree | 15734bfd1037b0ecc56a68284061cb4ec30b7018 /src | |
parent | 8248aaaa7952db580a199bd36202e7f26c19ec88 (diff) | |
download | vyos-1x-7d719106cbfdfa013bf6318353d4198ab05fea20.tar.gz vyos-1x-7d719106cbfdfa013bf6318353d4198ab05fea20.zip |
wwan: T4728: fix crontab file missing newline
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/interfaces-wwan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-wwan.py b/src/conf_mode/interfaces-wwan.py index 97b3a6396..a14a992ae 100755 --- a/src/conf_mode/interfaces-wwan.py +++ b/src/conf_mode/interfaces-wwan.py @@ -116,7 +116,7 @@ def generate(wwan): # disconnect - e.g. happens during RF signal loss. The script watches every # WWAN interface - so there is only one instance. if not os.path.exists(cron_script): - write_file(cron_script, '*/5 * * * * root /usr/libexec/vyos/vyos-check-wwan.py') + write_file(cron_script, '*/5 * * * * root /usr/libexec/vyos/vyos-check-wwan.py\n') return None |