We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that for the following AssetTracker no permissions are set for the database user used by RT 4.2.0. I am using Postgres 9.1
at_scripactions at_scriptconditions at_scrips at_templates
Is this related to issue #63 during which data insert fails?
The text was updated successfully, but these errors were encountered:
Fixed problem by adding missing tables and sequence counters to etc/acl.Pg:
sub acl { my $dbh = shift;
my @acls; my @tables = qw (
at_types at_types_id_seq at_assets at_assets_id_seq at_ips at_ips_id_seq at_ports at_ports_id_seq at_scripactions at_scripactions_id_seq at_scripconditions at_scripconditions_id_seq at_scrips at_scrips_id_seq at_templates at_templates_id_seq );
foreach my $table (@tables) { push @acls, "GRANT SELECT, INSERT, UPDATE, DELETE ON $table to " . $RT::DatabaseUser . ";"; } return (@acls);
} 1;
Sorry, something went wrong.
Pressed wrong button, reopening it
are you successfully using AT with RT 4.2.0+ ?
No branches or pull requests
I noticed that for the following AssetTracker no permissions are set for the database user used by RT 4.2.0. I am using Postgres 9.1
at_scripactions
at_scriptconditions
at_scrips
at_templates
Is this related to issue #63 during which data insert fails?
The text was updated successfully, but these errors were encountered: