~simpoir/landscape-client-charm/charm_push_target

« back to all changes in this revision

Viewing changes to dev/ubuntu-deps

  • Committer: 🤖 Landscape Builder
  • Author(s): Adam Collard
  • Date: 2019-04-05 14:05:56 UTC
  • mfrom: (67.1.4 install_sources_keys)
  • Revision ID: _landscape_builder-20190405140556-02pk7xjksbmwjtrm
Add install_sources and install_keys support to landscape-client charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
2
 
3
 
CODENAME=$(lsb_release -cs)
4
 
DEPS="landscape-common python-flake8 python-yaml"
5
 
if [ $CODENAME != "trusty" ]; then
6
 
    DEPS+=" flake8"
7
 
fi
 
3
DEPS="landscape-client flake8 python-yaml python-pip python-twisted-core python-systemfixtures"
8
4
sudo apt-get install -y $DEPS
9
5
 
10
6