summarylogtreecommitdiffstats
path: root/etcd.install
blob: 1e3696cc88b6c00c9e6af514e544505448359a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ETCD_DATA_DIR="/var/lib/etcd/"

post_install() {
    mkdir -p "${ETCD_DATA_DIR}"

    # create an etcd user
    id -u etcd &>/dev/null || useradd -r -M -U -d /dev/null -s /bin/nologin etcd

    chown -R etcd:etcd "${ETCD_DATA_DIR}"
}

post_upgrade() {
    post_install
}