Re: [pimppa-users] How to remove a group from a server
Brought to you by:
iwronsky
|
From: Igor W. <iwr...@us...> - 2005-05-11 21:04:35
|
On Wed, 11 May 2005, Neal Lafferty wrote: > Hey all, > Just a quick question for everyone. For adding a new server or > a new group, there is pnewsrv and pnewgrp. But I don't see how I > would remove a group or server. > How would I go about removing a group from the list, or removing a > server? You can use the GUI 'bowser', from there select 'preferences'. If you can't use the GUI, then you'll have to hit mysql directly, $ mysql mysql> use pimppa; mysql> delete from p_groups where g_name='somegroup'; mysql> delete from p_servers where s_name='someserver'; Thats it. And you can see the currently defined servers and groups from mysql by e.g. mysql> select s_name from p_servers; mysql> select g_name from p_groups; ... I'm not saying this is the best interface but hopefully those ops don't have to be used often. :) Cheers, Igor |