blob: d326d263c664b2755e5e9318b32b8f06204cdbcc (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
if [ -s /etc/hostname ]; then
hostname=$(cat /etc/hostname)
else
hostname="localhost"
fi
echo "EDGEDB_SERVER_INSTANCE_NAME=$hostname" >> /etc/edgedb/server.conf
}
|