1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
--- scripts/setup/nxserver.orig 2006-11-05 16:43:33.000000000 +0000
+++ scripts/setup/nxserver 2006-11-05 17:29:42.000000000 +0000
@@ -509,6 +509,10 @@
removeNXinit () {
+ if [ "$system" = "gentoo" ]; then
+ return
+ fi
+
runCommand "$RMCOMMAND -f /etc/init.d/nxserver" "Unable to remove '/etc/init.d/nxserver'" "warn"
if [ "$system" = "solaris" ];
@@ -655,6 +659,10 @@
addNXinit () {
+ if [ "$system" = "gentoo" ]; then
+ return
+ fi
+
runCommand "cat /usr/NX/scripts/init/nxserver > /etc/init.d/nxserver" "Unable to create: '/etc/init.d/nxserver'" "warn"
runCommand "chmod +x /etc/init.d/nxserver" "Cannot set permissions of '/etc/init.d/nxserver' file" "warn"
@@ -770,6 +778,11 @@
addNXUserLinux () {
+ # does the NX user already exist?
+ if id nx > /dev/null 2>&1 ; then
+ return
+ fi
+
if [ "x$system" = "xmandrake" -o "x$system" = "xfedora" ];
then
runCommand "useradd -p '*' -d '$NODE_ROOT/home/nx' -M nx" "Cannot add user: nx to the system" "error"
@@ -1914,6 +1927,10 @@
system=fedora
fi
+if [ -d /usr/portage ]; then
+ system=gentoo
+fi
+
if [ "x$system" = "x" -a -f /etc/release ];
then
system=solaris
@@ -1948,6 +1965,7 @@
"mandrake" ) ;;
"fedora" ) ;;
"debian" ) ;;
+ "gentoo" ) ;;
"solaris" ) ;;
"" ) ARGS=-1 && errMsg="$PREFIX $ERROR ERROR: Unable to autodetect the operating system type, please specify it" ;;
* ) ARGS=-1 && errMsg="$PREFIX $ERROR ERROR: Unsupported operating system '$system'" ;;
@@ -2104,14 +2122,6 @@
return 0
fi
- result=`id nx 2>&1`
- if [ $? = 0 ];
- then
- printMsg "Cannot add user: nx. User: nx already exists" "error"
- printMsg "Please try to fix the problem by reinstalling the server" "error"
- exit 1
- fi
-
LOGFILE="$INSTALLOG"
createLogdirectory
startLog
|