Actions
Bug #5681
closedrake katello:reset is broken on --devel deploy
Description
Currently running rake katello:reset is broken on a devel deploy.
In lib/katello/tasks/setup.rake "cpdb --drop --create" is called, but since candlepin does not have permissions to remove and create dbs, this fails. A workaround is:
sudo -u postgres psql
ALTER USER candlepin WITH SUPERUSER;
Actions