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#
|