Small documentation fixes, add better verbosity when saving connection

cache data.

FossilOrigin-Name: f4f170dd93a634783a0fbe89e56ba53bf4384b28179fb7f6eb9253dae06c031d
This commit is contained in:
Mahlon E. Smith 2011-09-06 23:05:35 +00:00
parent 4708fffff2
commit 270d66ab99

View file

@ -289,9 +289,10 @@ aliased to: ls
ls -lR uid=mahlon ls -lR uid=mahlon
list uid=m* list uid=m*
In 'verbose' mode, descriptions are listed as well, if they exist. In 'long' mode, descriptions are listed as well, if they exist.
There are also some 'sane' long listings for common objectClass types. There are some default 'long listing' mappings for common objectClass
You can actually specify your own in your .shelldap.rc, like so: types. You can additionally specify your own mappings in your
.shelldap.rc, like so:
... ...
descmaps: descmaps:
@ -299,7 +300,6 @@ You can actually specify your own in your .shelldap.rc, like so:
posixAccount: gecos posixAccount: gecos
posixGroup: gidNumber posixGroup: gidNumber
ipHost: ipHostNumber ipHost: ipHostNumber
puppetClient: puppetclass
=item B<mkdir> =item B<mkdir>
@ -528,7 +528,7 @@ You may try connecting insecurely, or install the module and try again.\n} if $@
unless ( $response =~ /^n/i ) { unless ( $response =~ /^n/i ) {
YAML::Syck::DumpFile( $conf->{'confpath'}, $conf ); YAML::Syck::DumpFile( $conf->{'confpath'}, $conf );
chmod 0600, $conf->{'confpath'}; chmod 0600, $conf->{'confpath'};
print "Connection info cached.\n"; print "Connection info cached to $conf->{'confpath'}.\n";
} }
} }