diff options
author | Scott Moser <smoser@brickies.net> | 2016-09-09 21:21:17 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-09-09 21:30:28 -0400 |
commit | 9f6cd39d5a88bd66a0d6c2662d6c5fe0b8ea197a (patch) | |
tree | 9b4d0cbf4031afc1c5985b0243af51e7a7b4c733 /debian/control | |
parent | 045889e5ebd6d772f14a677ffb24c4f543d3bb68 (diff) | |
download | vyos-cloud-init-9f6cd39d5a88bd66a0d6c2662d6c5fe0b8ea197a.tar.gz vyos-cloud-init-9f6cd39d5a88bd66a0d6c2662d6c5fe0b8ea197a.zip |
debian/control: fix missing dependency on python3-serial
Add python3-serial to Depends. This is not resolved by
${python3:Depends} because it is commented out in requirements.txt.
pyserial is problematic both because it is not pure python and
because it is not available for python2.6.
The commit 26ea813d2 removed pyserial and thus lost the automatic
dependency. This makes SmartOS datasource work.
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/debian/control b/debian/control index 759f7750..1788abb8 100644 --- a/debian/control +++ b/debian/control @@ -36,6 +36,7 @@ Depends: cloud-guest-utils | cloud-utils, procps, python3, python3-requests (>= 0.8.2), + python3-serial, ${misc:Depends}, ${python3:Depends} Recommends: eatmydata, gdisk, software-properties-common |