summaryrefslogtreecommitdiffstats
path: root/packaging/default_files/install.sh
diff options
context:
space:
mode:
authorOliver Tappe2007-06-15 17:10:01 +0200
committerOliver Tappe2007-06-15 17:10:01 +0200
commitefb225036e62ab95af6e5679011d112de4e4707d (patch)
tree5fc3672ea7549b4dd96071152b01be24b30b09ea /packaging/default_files/install.sh
parent* simplified use of PATH-variables to only the top-level set, all the (diff)
downloadcore-efb225036e62ab95af6e5679011d112de4e4707d.tar.gz
core-efb225036e62ab95af6e5679011d112de4e4707d.tar.xz
core-efb225036e62ab95af6e5679011d112de4e4707d.zip
* moved builddebianpackage into 'packaging'-folder, adjusted accordingly
Felix: again, please shout if you see any problems. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1168 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'packaging/default_files/install.sh')
-rwxr-xr-xpackaging/default_files/install.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/packaging/default_files/install.sh b/packaging/default_files/install.sh
deleted file mode 100755
index cb090fa7..00000000
--- a/packaging/default_files/install.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-if [ "$EUID" -ne 0 ]; then
- echo "You need to start this installer as user root"
- exit
-fi
-
-cp -Rv dxs /usr/share/
-cp -v man/* /usr/share/man/man1/
-#Create links to provide the scripts to the user
-pushd /usr/sbin > /dev/null
-ln -vs ../share/dxs/installer/ld4-inst
-ln -vs ../share/dxs/initrd/mkdxsinitrd
-popd > /dev/null
-echo "Done."