projects
/
invirt/packages/invirt-autoinstaller.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a0226cfa26cebbf7d97dc85ffaa82b220a4fcdf5
[invirt/packages/invirt-autoinstaller.git]
/
debian
/
invirt-autoinstaller-guest.postinst
1
#!/bin/sh
2
3
case "$1" in
4
configure)
5
passwd root -d
6
;;
7
*)
8
echo "postinst called with unknown argument \`$1'" >&2
9
exit 1
10
;;
11
esac
12
13
#DEBHELPER#
14
15
exit 0