Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 193012 | Differences between
and this patch

Collapse All | Expand All

(-)coda-6.9.2.old/coda-src/scripts/venus-setup.in (-10 / +10 lines)
Lines 65-80 Link Here
65
#fi
65
#fi
66
66
67
# default paths
67
# default paths
68
errorlog=/usr/coda/etc/console
68
errorlog=/var/lib/coda/etc/console
69
cachedir=/usr/coda/venus.cache
69
cachedir=/var/lib/coda/venus.cache
70
checkpointdir=/usr/coda/spool
70
checkpointdir=/var/lib/coda/spool
71
logfile=/usr/coda/etc/venus.log
71
logfile=/var/lib/coda/etc/venus.log
72
marinersocket=/usr/coda/spool/mariner
72
marinersocket=/var/lib/coda/spool/mariner
73
pid_file=/usr/coda/venus.cache/pid
73
pid_file=/var/lib/coda/venus.cache/pid
74
run_control_file=/usr/coda/venus.cache/VENUS_CTRL
74
run_control_file=/var/lib/coda/venus.cache/VENUS_CTRL
75
rvm_log=/usr/coda/LOG
75
rvm_log=/var/lib/coda/LOG
76
rvm_data=/usr/coda/DATA
76
rvm_data=/var/lib/coda/DATA
77
mountpoint=/coda
77
mountpoint=/mnt/coda
78
78
79
# override with user defined paths
79
# override with user defined paths
80
if [ x${conf} != x/dev/null ] ; then
80
if [ x${conf} != x/dev/null ] ; then
(-)coda-6.9.2.old/coda-src/scripts/vice-setup-rvm.in (-1 / +1 lines)
Lines 42-48 Link Here
42
#
42
#
43
43
44
# defaults, will be overridden by settings in the server.conf file
44
# defaults, will be overridden by settings in the server.conf file
45
vicedir=/vice
45
vicedir=/var/lib/vice
46
46
47
prefix=@prefix@
47
prefix=@prefix@
48
exec_prefix=@exec_prefix@
48
exec_prefix=@exec_prefix@
(-)coda-6.9.2.old/coda-src/scripts/vice-setup-srvdir (-3 / +3 lines)
Lines 73-87 Link Here
73
    echo
73
    echo
74
    
74
    
75
    if [ $numservers -gt 1 ]; then
75
    if [ $numservers -gt 1 ]; then
76
	echon "Where shall we store your file data for server $n ($hn) [/vicepa]? "
76
	echon "Where shall we store your file data for server $n ($hn) [/mnt/vicepa]? "
77
    else
77
    else
78
	echon 'Where shall we store your file data [/vicepa]? '
78
	echon 'Where shall we store your file data [/mnt/vicepa]? '
79
    fi
79
    fi
80
    srvdir=
80
    srvdir=
81
    read srvdir
81
    read srvdir
82
82
83
    if [ "x$srvdir" = x ]; then
83
    if [ "x$srvdir" = x ]; then
84
	srvdir=/vicepa
84
	srvdir=/mnt/vicepa
85
    fi
85
    fi
86
86
87
    # Create the directory if needed.  (Symlink is OK.)
87
    # Create the directory if needed.  (Symlink is OK.)
(-)coda-6.9.2.old/coda-src/scripts/vice-setup.in (-2 / +2 lines)
Lines 122-133 Link Here
122
  fi
122
  fi
123
fi
123
fi
124
124
125
echon "What is the root directory for your coda server(s)? [/vice] "
125
echon "What is the root directory for your coda server(s)? [/var/lib/vice] "
126
vicedir=""
126
vicedir=""
127
read vicedir
127
read vicedir
128
128
129
if [ "x$vicedir" = x ] ; then
129
if [ "x$vicedir" = x ] ; then
130
   vicedir=/vice
130
   vicedir=/var/lib/vice
131
fi
131
fi
132
132
133
if [ $mkconf = 1 ] ; then
133
if [ $mkconf = 1 ] ; then
(-)coda-6.9.2.old/coda-src/venus/venus.conf.ex (-10 / +19 lines)
Lines 20-26 Link Here
20
# Which file is used for realm lookups, before we look at dns SRV and A
20
# Which file is used for realm lookups, before we look at dns SRV and A
21
# records.
21
# records.
22
#
22
#
23
#realmtab=/etc/coda/realms
23
realmtab=/etc/coda/realms
24
24
25
#
25
#
26
# What should the size of the local cache be in 1k blocks. If this is
26
# What should the size of the local cache be in 1k blocks. If this is
Lines 57-63 Link Here
57
# Which file should receive venus's stderr output.
57
# Which file should receive venus's stderr output.
58
# (default is /usr/coda/etc/console).
58
# (default is /usr/coda/etc/console).
59
#
59
#
60
#errorlog=/usr/coda/etc/console
60
errorlog=/var/lib/coda/etc/console
61
61
62
#
62
#
63
# What is the uid of the primary user of this system. The primary user
63
# What is the uid of the primary user of this system. The primary user
Lines 79-114 Link Here
79
# have an existing filesystem, as you WILL lose all data during
79
# have an existing filesystem, as you WILL lose all data during
80
# initialization.
80
# initialization.
81
#
81
#
82
#rvm_log=/usr/coda/LOG
82
rvm_log=/var/lib/coda/LOG
83
#rvm_data=/usr/coda/DATA
83
rvm_data=/var/lib/coda/DATA
84
84
85
#
85
#
86
# Where should venus keep it's pool of cached files.
86
# Where should venus keep it's pool of cached files.
87
# (default is /usr/coda/venus.cache)
87
# (default is /usr/coda/venus.cache)
88
#
88
#
89
#cachedir=/usr/coda/venus.cache
89
cachedir=/var/lib/coda/venus.cache
90
90
91
#
91
#
92
# Where should venus store snapshots of the modification logs. This is
92
# Where should venus store snapshots of the modification logs. This is
93
# primarily to provide some safe fallback when venus dies or messes up
93
# primarily to provide some safe fallback when venus dies or messes up
94
# the CML during reintegration. (default is /usr/coda/spool)
94
# the CML during reintegration. (default is /usr/coda/spool)
95
#
95
#
96
#checkpointdir=/usr/coda/spool
96
checkpointdir=/var/lib/coda/spool
97
97
98
#
98
#
99
# Where does venus store it's pidfile
99
# Where does venus store it's pidfile
100
#
100
#
101
#pid_file=/usr/coda/venus.cache/pid
101
pid_file=/var/lib/coda/venus.cache/pid
102
102
103
#
103
#
104
# What file does vutil use to control venus
104
# What file does vutil use to control venus
105
#
105
#
106
#run_control_file=/usr/coda/venus.cache/VENUS_CTRL
106
run_control_file=/var/lib/coda/venus.cache/VENUS_CTRL
107
107
108
#
108
#
109
# Venus log file
109
# Venus log file
110
#
110
#
111
#logfile=/usr/coda/etc/venus.log
111
logfile=/var/lib/coda/etc/venus.log
112
112
113
#
113
#
114
# Mariner socket,
114
# Mariner socket,
Lines 116-122 Link Here
116
# codacon and spy use to talk to venus. On other platforms they will
116
# codacon and spy use to talk to venus. On other platforms they will
117
# connect to venus through tcp port 2430.
117
# connect to venus through tcp port 2430.
118
#
118
#
119
#marinersocket=/usr/coda/spool/mariner
119
marinersocket=/var/lib/coda/spool/mariner
120
120
121
#
121
#
122
# Dont use RVM,
122
# Dont use RVM,
Lines 271-273 Link Here
271
#
271
#
272
#isr=0
272
#isr=0
273
273
274
# Mountpoint,
275
# Where the coda filesystem is mounted, many application still depend on
276
# this being /coda. I am unsure whether it matters much on Windows95/98,
277
# but we normally use N: for those.
278
#
279
#mountpoint=N:
280
#mountpoint=/mnt/coda
281
mountpoint=/mnt/coda
282
(-)coda-6.9.2.old/coda-src/vice/server.conf.ex (-1 / +1 lines)
Lines 11-17 Link Here
11
#
11
#
12
# Prefix of server tree
12
# Prefix of server tree
13
#
13
#
14
#vicedir=/vice
14
#vicedir=/var/lib/vice
15
15
16
#
16
#
17
# Should the server use private mmaps for RVM
17
# Should the server use private mmaps for RVM

Return to bug 193012