Sponsored Content
The Lounge What is on Your Mind? VBulletin 3.8 to Discourse on Docker Migration Test Take Four Post 303045334 by Neo on Tuesday 17th of March 2020 06:28:33 AM
Old 03-17-2020
Code:
discourse=> select id, name from groups;
discourse=> update users set primary_group_id = 2 where primary_group_id = 48;      #moved all moderators in vb to mod group on discourse

In addition:
  • Moved all moderators and moderator emeritus to trust_factor_4 (Leader)
  • Moved all forum advisors to trust_factor_3
 

7 More Discussions You Might Find Interesting

1. Web Development

Removing VBSEO for vbulletin – Reverting back to vbulletin URLs

Please note, this information was copied from vbseo.com, now showing a database error. This is posted for reference since vbSEO seems to be going out of business: If you ever need to uninstall vBSEO , you can use the following instructions. Make sure you carefully follow each step. Login... (37 Replies)
Discussion started by: Neo
37 Replies

2. Linux

Docker and pipework,ip with other subnet

Recently i found this for give to docker a "personal" ip ip addr del 10.1.1.133/24 dev eth0 ip link add link eth0 dev eth0m type macvlan mode bridge ip link set eth0m up ip addr add 10.1.1.133/24 dev eth0m route add default gw 10.1.1.1On container i did ... (0 Replies)
Discussion started by: Linusolaradm1
0 Replies

3. AIX

AIX - FC Switch migration, SAN Migration question!

I'm New to AIX / VIOS We're doing a FC switch cutover on an ibm device, connected via SAN. How do I tell if one path to my remote disk is lost? (aix lvm) How do I tell when my link is down on my HBA port? Appreciate your help, very much! (4 Replies)
Discussion started by: BG_JrAdmin
4 Replies

4. Shell Programming and Scripting

Problem in extracting yocto SDK for docker

Actually I was facing the following issue while building my Yocto SDK on Docker container sudo docker build --tag="akash/eclipse-che:6.5.0-1" --tag="akash/eclipse-che:latest" /home/akash/dockerimage.yocto.support/ Sending build context to Docker daemon 26.93MB Step 1/5 : FROM eclipse/cpp_gcc ... (3 Replies)
Discussion started by: Akash BHardwaj
3 Replies

5. Docker

Docker learning Phase-I

Hello All, I had recently learnt a bit of Docker(which provides containerization process). Here are some of my learning points from it. Let us start first with very basic question: What is Docker: Docker is a platform for sysadmins and developers to DEPLOY, DEVELOP and RUN applications ... (7 Replies)
Discussion started by: RavinderSingh13
7 Replies

6. What is on Your Mind?

VBulletin 3.8 to Discourse on Docker Migration Test Take Two

OK. Like we all do, we learn a lot from tests, test migrations, and so forth. Today, I started from scratch on test migration 2, armed with a lot more knowledge, The main differences are as follows: Installed discourse plugin ruby-bbcode-to-md before starting the install Modified... (30 Replies)
Discussion started by: Neo
30 Replies

7. What is on Your Mind?

Under Consideration: Migrate the Forums to Discourse

Dear All, After being active on the Node-RED forum for the last few weeks, I have been very impressed with Discourse, and my eyes have been opened. https://www.discourse.org/ but not the paid /hosted offering, but using the open distribution: https://github.com/discourse/discourse ... (52 Replies)
Discussion started by: Neo
52 Replies
GETLIST(1)						    InterNetNews Documentation							GETLIST(1)

NAME
getlist - Get a list from an NNTP server SYNOPSIS
getlist [-AR] [-h host] [-p port] [list [pattern [types]]] DESCRIPTION
getlist obtains a list from an NNTP server and sends it to standard output. list may be one of "active" (which is the default value), "active.times", "distrib.pats", or "newsgroups". "active" contains a list of all newsgroups carried by the server with the high and low article numbers in the group, and the group status field. "active.times" is a list of newsgroups, their creation times (in seconds since epoch), and the creator of the group. "distrib.pats" is a list of relevant distributions and the newsgroups they apply to. "newsgroups" is a list of newsgroups along with their short descriptions. For more information on the formats of these files, see active(5), active.times(5), distrib.pats(5) and newsgroups(5). The listing files other than the active file are common extensions to the NNTP protocol and may not be available on all servers. For instance, "counts" "distributions", "headers", "moderators", "motd", "overview.fmt" and "subscriptions", amongst other, may be available. Moreover, a uwildmat(3) pattern pattern may also be usable for some of these listing files. For more information on the formats of these files, see distributions(5), moderators(5), motd.news(5) and subscriptions(5). The overview fields obtained with "overview.fmt" are the ones for which the overview database is consistent (see extraoverviewadvertised in inn.conf for more information). The list obtained with "headers" contains the fields that can be retrieved using the HDR command (pattern can then be either "msgid" or "range"). The list obtained with "counts" is like the "active" one except that the number of articles in a newsgroup is mentioned just before the flag of this newsgroup. The pattern parameter may be used with a list value of "active", "active.times" or "newsgroups" to limit the output. If given, only entries corresponding to newsgroups that match the uwildmat(3) pattern pattern will be printed. If the list parameter is "active", a third parameter, types, may also be used to restrict the list. If given, only entries corresponding to newsgroups with a newsgroup mode found in types will be printed. For example, a types value of "y" would only show unmoderated groups, and a types value of "ym" would show all unmoderated and moderated groups but not aliased groups or groups that disallow postings. OPTIONS
-A Try to authenticate using the username and password information in passwd.nntp(5) before issuing the LIST command. -h host Connect to the server host rather than to the value of server in inn.conf or the value of the NNTPSERVER environment variable. -p port Connect to the port port, which is by default 119. -R Try to switch to nnrpd with a MODE READER command before issuing the LIST request. It can be useful in case a feeding access exists for the news server: more information can be retrieved from nnrpd, compared with innd. EXAMPLES
The following command will obtain the one-line descriptions of all newsgroups found on UUNET: getlist -h news.uu.net newsgroups The following command will show the active file entries for all moderated comp.* groups on the default server: getlist active 'comp.*' m The following command lists all groups where local postings are permitted, are moderated or aliased: getlist active '*' ym= Note that the wildcard character "*" has to be quoted by simple quotes to protect it from the shell. HISTORY
Written by Landon Curt Noll <chongo@toad.com> for InterNetNews. Rewritten in POD by Russ Allbery <rra@stanford.edu>. $Id: getlist.pod 8837 2009-12-03 21:08:59Z iulius $ SEE ALSO
active(5), active.times(5), distrib.pats(5), distributions(5), inn.conf(5), moderators(5), motd.news(5), newsgroups(5), nnrpd(8), passwd.nntp(5), subscriptions(5), uwildmat(3). INN 2.5.2 2010-02-08 GETLIST(1)
All times are GMT -4. The time now is 04:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy