mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
13 lines
208 B
Bash
13 lines
208 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
|
|
if [ "$2" = "" ] ; then # no recently configured version, this is a first install
|
|
/usr/sbin/update-rc.d cloud-vnet defaults || true
|
|
fi
|
|
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER# |