10-30-2009
This package is bogus. You'd better ask for it to be fixed by its creator.
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
I have sucessfully installed GNUtar using pkgadd but with some questions:
When I tried to install with pkgadd -d GNUtar (which is the directory of the package) - I received the error "pkgadd: command not found"
Then I tried the same but with pkgadd -d. GNUtar and it installed fine. (found... (4 Replies)
Discussion started by: finster
4 Replies
2. UNIX for Dummies Questions & Answers
I am adding gcc 3.3.2 to my unix box what is the best way
to do it???? (4 Replies)
Discussion started by: alsande
4 Replies
3. Solaris
is there an option in pkgadd to accept the default option?
I want to use pkgadd in a script and do not want to stop at intercative questions.
thx. (6 Replies)
Discussion started by: melanie_pfefer
6 Replies
4. UNIX for Dummies Questions & Answers
Please inform me on how I can resolve the PaTcH_MsG 8 Version message below I am running solaris 9 9/05 HW on a Sun V445. Thank you.
# pkgadd SUNWqlc
Processing package instance <SUNWqlc> from </var/spool/pkg>
Qlogic ISP 2200/2202 Fibre Channel Device Driver
(sparc)... (3 Replies)
Discussion started by: GLJ@USC
3 Replies
5. UNIX for Advanced & Expert Users
I have a server running solaris 8 with veritas 4.1. I am trying to install a package on the server. The package install fails miserably though. I have installed the very same package on other development servers, but for some reason, the install fails on this, soon to be prod, server. No idea... (3 Replies)
Discussion started by: Sowser
3 Replies
6. Solaris
I'm trying to install a package and it worked on most of the sun boxes and one of the box is just freezing and not going further. Her is the output.
pkgadd -d packagename.dstream
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) :
Processing... (1 Reply)
Discussion started by: mokkan
1 Replies
7. Solaris
Hi all.
Is there an option to #pkgadd to test if package bundle you want to install requires a reboot?
#pkgadd -d "package bundle" an option like test or a dry run?
Suggestions, anyone? :confused:
Reloader (2 Replies)
Discussion started by: Reloader
2 Replies
8. Solaris
Morning all,
I am attempting to load a package from a Solaris 8 CDROM.
This fails with the error :
"pkgadd: ERROR: unable to access pkgmap file </cdrom/ .........../SUNWlibC/pkgmap>
No changes were made to the system"
Any help would be appreciated
Andy (6 Replies)
Discussion started by: AndyD
6 Replies
9. Shell Programming and Scripting
Hi,
Please could someone help me, understand how pkgadd works within unix.
I have a software file, and I need to package this up and then pkgadd this to another server. Please could some advise me the best way to do this.
regards
venhart (2 Replies)
Discussion started by: venhart
2 Replies
10. Solaris
I am using Solaris 10, and trying to keep a number of old Sun
workstations running.
Since version 17 of firefox, I have had problems using pkgadd,
and had to use tar to un-archive the components of firefox.
Is this just a problem with firefox (and probably thunderbird),
or is pkgadd broken (1 Reply)
Discussion started by: jkoval
1 Replies
LEARN ABOUT DEBIAN
jifty::plugin::actormetadata::mixin::model::actormetadata
Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadatUsermContributed Perl DocumeJifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata(3pm)
NAME
Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata - ActorMetadata mixin
SYNOPSIS
package MyApp::Model::CoffeeShop;
use Jifty::DBI::Schema;
use MyApp::Record schema {
# custom column definitions
};
use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata; # created_by, created_on, updated_on and updated_by
DESCRIPTION
SCHEMA
This mixin adds the following columns to the model schema:
created_by
created_on
updated_on
updated_by
METHODS
# XXX: pod coverage should count parent classes. this pod is useless
register_triggers
Adds the triggers to the model this mixin is added to.
register_triggers_for_column
before_create
Sets "created_by", "created_on", "updated_on" and "updated_by" based on the current user and time.
after_set
update "updated_on" and "updated_by" based on the current user and current time.
current_user_can
Rejects creation unless there's a current_user.
current_user_is_owner
import
to be more flexible, we allow some configurations like: e.g. use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata
user_class => 'Foo::Model::Principal',
map => { created_by => 'creator', created_on => 'created' }
current valid args are: user_class => 'Foo::Model::User'
class that you want created_by and updated_by to be refers_to map => { created_by => 'creator', ... }
the real column name you want to use. this also controls whether
a column will be added or not. i.e. if the hashref is
{ created_by => 'creator', created_on => 'created' }, then columns
'updated_by' and 'updated_on' will not be added.
perl v5.14.2 2011-02-08 Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata(3pm)