File: cuttlefish-integration.postinst

package info (click to toggle)
android-cuttlefish 1.0.1-0~exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,192 kB
  • sloc: cpp: 39,149; sh: 2,523; javascript: 242; exp: 152; python: 125; makefile: 88
file content (22 lines) | stat: -rwxr-xr-x 585 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

# Number of AVD accounts to create. 8 may be the limit imposed by the
# VHCI HCD driver used for adb connections
num_cvd_accounts=8

# cvd accounts only invoke adb, so limit their access via groups
cvd_account_groups=plugdev

case "$1" in
    (configure)
    # Update the installed version of the diverted file with the
    # desired configuration.
    # We can't use the traditional transform approach here because
    # sshd_config doesn't have a registered md5sum in older versions.
    # Now we install configs to /etc/ssh/sshd_config.d
    ;;
esac

#DEBHELPER#