From: W. Trevor King Date: Fri, 28 Sep 2012 01:28:01 +0000 (-0400) Subject: post:irc-server: Convert Options.PAM -> Global.NoPAM for ngIRCd v17+. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eb1064cff5542cf5a6277d4b8636799b68ec1942;p=blog.git post:irc-server: Convert Options.PAM -> Global.NoPAM for ngIRCd v17+. Also replace tabs with spaces in the Markdown source. --- diff --git a/posts/Local_IRC_server.mdwn b/posts/Local_IRC_server.mdwn index fec2b58..779945a 100644 --- a/posts/Local_IRC_server.mdwn +++ b/posts/Local_IRC_server.mdwn @@ -21,8 +21,8 @@ Installation was a simple: # emerge -av ngircd # emacs /etc/ngircd/ngircd.conf - # cat /etc/ngircd/ngircd.conf - [Global] + # cat /etc/ngircd/ngircd.conf + [Global] Name = irc.example.com AdminInfo1 = John Doe AdminInfo2 = 123 Street Rd. @@ -30,9 +30,8 @@ Installation was a simple: Info = bla bla bla ServerGID = nogroup ServerUID = ngircd - [Options] - PAM = no - # /etc/init.d/ngircd restart + NoPAM = yes + # /etc/init.d/ngircd restart I didn't add `ngircd` to the default runlevel. I'll just start it by hand whenever I want to use it.