The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DynGig::Util::Symlink - manipulate symbolic links

SYNOPSIS

 use DynGig::Util::Symlink;
 
 my $link = DynGig::Util::Symlink->new
 (
     link => 'foo.bar',
     root => '/foo/bar', ## optional
     path => 'foo.real', ## optional
     user => 'web:web',  ## optional 
 )

 my $check = $link->check();
 my $path1 = $link->make();
 my $path2 = $link->make( rollback => 1 );

NOTE

See DynGig::Util