Skip to content

Commit

Permalink
override any existing configuration during apt installation (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenmiller authored Nov 28, 2023
1 parent 2f47ca3 commit add4197
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
recipes/build-info/files/.build_info
**/debian-packages.list
rugpi-bakery.toml
*.log
2 changes: 1 addition & 1 deletion recipes/mosquitto/steps/00-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
echo 'deb [signed-by=/usr/share/keyrings/debian-archive-keyring.gpg] http://deb.debian.org/debian sid main' > /etc/apt/sources.list.d/debian-sid.list
apt-get update

DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
DEBIAN_FRONTEND=noninteractive apt-get -o DPkg::Options::=--force-confnew -y --no-install-recommends install \
mosquitto \
mosquitto-clients

Expand Down
2 changes: 1 addition & 1 deletion recipes/thin-edge.io/steps/00-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
curl -fsSL https://thin-edge.io/install.sh | sh -s -- --channel main

# Install collectd
apt-get install -y --no-install-recommends \
apt-get install -y -o DPkg::Options::=--force-confnew --no-install-recommends \
mosquitto-clients \
c8y-command-plugin \
tedge-collectd-setup \
Expand Down

0 comments on commit add4197

Please sign in to comment.