Add postinstall script to debian package for telemetry notification

This commit is contained in:
Dan Quirk 2016-04-02 02:07:16 +00:00 committed by Daniel Quirk
parent 49fae29b7b
commit 561f856e36
3 changed files with 16 additions and 0 deletions

View file

@ -158,6 +158,7 @@ create_empty_debian_layout(){
mkdir "$PACKAGE_LAYOUT_DIR/package_root"
mkdir "$PACKAGE_LAYOUT_DIR/samples"
mkdir "$PACKAGE_LAYOUT_DIR/docs"
mkdir "$PACKAGE_LAYOUT_DIR/DEBIAN"
}
copy_files_to_debian_layout(){
@ -175,6 +176,11 @@ copy_files_to_debian_layout(){
# Append Version to all manpage files
for manpage in "$PACKAGE_LAYOUT_DIR/docs/"*.1; do mv "$manpage" "${manpage%.1}"; done
for manpage in "$PACKAGE_LAYOUT_DIR/docs/"*; do mv "$manpage" "${manpage}-${DOTNET_CLI_VERSION}.1"; done
# Copy postinstall
cp "$PACKAGING_ROOT/postinst" "$PACKAGE_LAYOUT_DIR/$"
#cp "$PACKAGING_ROOT/postinst" "PACKAGE_LAYOUT_DIR/package_root"
#cp "$PACKAGING_ROOT/postinst" "$PACKAGE_LAYOUT_DIR/DEBIAN/postinst"
}
create_debian_package(){