File: deb

package info (click to toggle)
mender-client 3.4.0%2Bds1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,084 kB
  • sloc: sh: 1,134; makefile: 277; python: 172; ansic: 125; xml: 27
file content (13 lines) | stat: -rwxr-xr-x 140 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

STATE="$1"
FILES="$2"

case "$STATE" in
    ArtifactInstall)
        dpkg -i "$FILES"/files/*.deb
        ;;
esac
exit 0