summarylogtreecommitdiffstats
path: root/cuttlefish-base.install
blob: 8a47af54e1de2c1c42cd21be335fda550ae0bed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set -e

post_install() {
    if ! getent group cvdnetwork > /dev/null 2>&1
    then
        groupadd --system cvdnetwork
    fi

    # Create the kvm group when running inside a docker container.
    if test -f /.dockerenv && ( ! getent group kvm > /dev/null 2>&1 )
    then
        groupadd --system kvm
    fi
}

# vim: ft=sh:ts=4:sw=4:et:nowrap