status information about cached AFS files. The default is based on the
size of the cache. Use the B<-stat> argument to override the default.
-=item *
-
-If the B<-settime> option is specified, then it randomly selects a file
-server machine in the local cell as the source for the correct time. Every
-five minutes thereafter, the local clock is adjusted (if necessary) to
-match the file server machine's clock. This is not enabled by default. It
-is recommended, instead, that the Network Time Protocol Daemon be used to
-synchronize the time.
-
=back
In addition to setting cache configuration parameters, the B<afsd> program
=item B<-nosettime>
-This is enabled by default. It prevents the Cache Manager from
-synchronizing its clock with the clock on a server machine selected at
-random by checking the time on the server machine every five minutes.
-This is the recommended behavior; instead of the AFS Cache Manager, the
-Network Time Protocol Daemon should be used to synchronize the system
-time.
+This option is obsolete and no longer has any effect. The operating system
+provided time keeping services should be used to maintain the system time.
=item B<-prealloc> <I<number of preallocated blocks>>
=item B<-settime>
-Enable native AFS time synchronization. This option is the opposite of
-B<-nosettime> and cannot be used with the B<-nosettime> option.
+The B<-settime> option is deprecated and should no longer be specified. The
+operating system provided time keeping services should be used to maintain the
+system time.
+
+The B<-settime> option enables the native AFS time synchronization. If the
+B<-settime> option is specified, then a randomly selected a file server machine
+in the local cell is used as the source for the correct time. Every five minutes
+thereafter, the local clock is adjusted (if necessary) to match the file server
+machine's clock.
=item B<-shutdown>
* -mountdir The directory on which the AFS is to be mounted.
* -confdir The configuration directory .
* -nosettime Don't keep checking the time to avoid drift (default).
- * -settime Keep checking the time to avoid drift.
+ * -settime Keep checking the time to avoid drift (deprecated).
* -rxmaxmtu Set the max mtu to help with VPN issues.
* -verbose Be chatty.
* -disable-dynamic-vcaches Disable the use of -stat value as the starting size of
}
if (as->parms[8].items) {
/* -nosettime */
+ printf("afsd: -nosettime is deprecated -- ignored\n");
cacheSetTime = 0;
}
if (as->parms[9].items) {
}
if (as->parms[32].items) {
/* -settime */
+ printf("afsd: -settime is deprecated\n");
cacheSetTime = 1;
}