summaryrefslogtreecommitdiff
path: root/linux/deb/01-fs-hello-kamal/package/DEBIAN/postinst
blob: 978306d005d04504131e5430256b69a182f5cf71 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

set -e 

if [ "$1" == "configure" ] && [ -z "$2" ]; then
  # Code here executes only during package install (but not during upgrade)
  echo "postinst script is running and this line gets printed during first install of the package"
fi

echo "postinst script is running and this line gets printed during install or upgrade of the package."