summaryrefslogtreecommitdiffstats
path: root/core/modules/ncp/module.build
diff options
context:
space:
mode:
authorSimon Rettberg2018-03-13 12:04:49 +0100
committerSimon Rettberg2018-03-13 12:04:49 +0100
commit59a7d97dd20d61223b7f2ec57349695ba4f3a76a (patch)
treece40fc3fc094ee2500b458bd8485cbebc2d1aaf8 /core/modules/ncp/module.build
parent[run-virt] Copy user's kerberos ticket to virtual floppy (diff)
downloadmltk-59a7d97dd20d61223b7f2ec57349695ba4f3a76a.tar.gz
mltk-59a7d97dd20d61223b7f2ec57349695ba4f3a76a.tar.xz
mltk-59a7d97dd20d61223b7f2ec57349695ba4f3a76a.zip
Kill consolekit and ncp
Diffstat (limited to 'core/modules/ncp/module.build')
-rw-r--r--core/modules/ncp/module.build26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/modules/ncp/module.build b/core/modules/ncp/module.build
deleted file mode 100644
index d8250512..00000000
--- a/core/modules/ncp/module.build
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-fetch_source() {
-
- # Distribution switch: Ubuntu 14.04 dropped packages ncpfs and libncp:
- if [[ "$SYS_DISTRIBUTION" == "ubuntu" && "$SYS_VERSION" == "14.04" ]]; then
- for file in $REQUIRED_DOWNLOAD_URLS; do
- local package="$(basename $file)"
- pinfo "Downloading and installing package $package ..."
- download_if_empty "$file" "src/$package"
- dpkg -i "src/$package" || perror "Could not install package $package."
- done
- fi
-}
-
-build() {
- local COPYLIST="$MODULE_BUILD_DIR/list_packet_files"
- # TODO: Hack for SUSE: Ignore file (/var/lib/nfs/state) that does not exist :(
- list_packet_files | grep -v '/var/lib/nfs/state' | sort -u > "$COPYLIST"
- tarcopy "$(cat "$COPYLIST")" "${MODULE_BUILD_DIR}"
-
-}
-
-post_copy() {
- :
-}