summarylogtreecommitdiffstats
path: root/datomic.install
blob: 8d1387d6b7a23f95bcd1b23fca9e37c555ac7e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pre_install() {
    useradd -r -d /var/lib/datomic datomic
}

post_install() {
    chown -R datomic /var/lib/datomic
}

pre_remove() {
    systemctl stop datomic-free
    systemctl disable datomic-free
}

post_remove() {
    userdel datomic
}