File: postinst

package info (click to toggle)
waagent 2.12.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,780 kB
  • sloc: python: 55,011; xml: 3,325; sh: 1,183; makefile: 22
file content (12 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# postinst script for #PACKAGE#

set -e

if [ "$1" = configure ] && [ -z "$2" ]; then
    mkdir --mode 0700 /var/lib/waagent
fi

#DEBHELPER#

exit 0