summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas N. Ferreira <lnf07@c3sl.ufpr.br>2010-07-12 19:19:58 -0300
committerLucas N. Ferreira <lnf07@c3sl.ufpr.br>2010-07-12 19:19:58 -0300
commit5d61e9b257fc743a01183c1f0d641f831c2cac95 (patch)
tree40b172ffc8cf311f9164a424a83df463058256c2
parentd48147ee26f1fcf13b7599e0c42c74b80ea37d4c (diff)
Correct install script, change mv to cp.
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index f92acb9..7914b59 100755
--- a/install.sh
+++ b/install.sh
@@ -7,13 +7,13 @@ XORG_CONFIG_DIR=/etc/X11/
CONSOLE_KIT_CONFIG_DIR=/etc/ConsoleKit/
echo "Installing 'sead-id' script to name the seats."
-mv src/seat-id $SRC_DIR
+cp src/seat-id $SRC_DIR
echo "Installing udev rules for detect the Plugable Dock Stations."
-mv udev/50-usbseat.rules $UDEV_DIR
+cp udev/50-usbseat.rules $UDEV_DIR
echo "Install Xorg configuration files for two static seats"
-mv etc/X11/ $XORG_CONFIG_DIR
+cp -r etc/X11/ $XORG_CONFIG_DIR
echo "Configuring ConsoleKit"
-mv etc/ConsoleKit/ $CONSOLE_KIT_CONFIG_DIR
+cp -r etc/ConsoleKit/ $CONSOLE_KIT_CONFIG_DIR