summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-05 06:18:38 -0400
committerAdam <Adam@anope.org>2011-08-05 06:18:38 -0400
commit5e18a7292b15a0aaf27c2f3ce6335116a4d2290d (patch)
treee4fecd737635cac1bc038ee8a56805f424cee613
parente66063e6304538d34c40460ca0aa2be5ddb6bdec (diff)
Mark the new commands/ modules as CORE and fixed a typo in the example.conf
-rw-r--r--data/CMakeLists.txt2
-rw-r--r--data/example.conf2
-rw-r--r--modules/commands/cs_appendtopic.cpp2
-rw-r--r--modules/commands/cs_enforce.cpp2
-rw-r--r--modules/commands/cs_entrymsg.cpp2
-rw-r--r--modules/commands/cs_set_misc.cpp2
-rw-r--r--modules/commands/cs_sync.cpp2
-rw-r--r--modules/commands/cs_tban.cpp2
-rw-r--r--modules/commands/hs_request.cpp2
-rw-r--r--modules/commands/ns_set_misc.cpp2
-rw-r--r--modules/commands/os_defcon.cpp2
11 files changed, 11 insertions, 11 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
index b0d99e11e..a9f27a5f8 100644
--- a/data/CMakeLists.txt
+++ b/data/CMakeLists.txt
@@ -1,6 +1,6 @@
# Only install example.chk and example.conf from this directory
# NOTE: I would've had this just find all files in the directory, but that would include files not needed (like this file)
-set(DATA example.chk commands.example.conf example.conf modules.example.conf mysql/tables.sql)
+set(DATA example.chk tables.sql botserv.example.conf example.conf hostserv.example.conf modules.example.conf operserv.example.conf chanserv.example.conf global.example.conf memoserv.example.conf nickserv.example.conf)
install(FILES ${DATA}
DESTINATION data
)
diff --git a/data/example.conf b/data/example.conf
index a14cf9ef6..1f85bed94 100644
--- a/data/example.conf
+++ b/data/example.conf
@@ -494,7 +494,7 @@ options
include
{
type = "file"
- name = "botserv.example.comf"
+ name = "botserv.example.conf"
}
/*
diff --git a/modules/commands/cs_appendtopic.cpp b/modules/commands/cs_appendtopic.cpp
index c9af50613..6d66d1724 100644
--- a/modules/commands/cs_appendtopic.cpp
+++ b/modules/commands/cs_appendtopic.cpp
@@ -105,7 +105,7 @@ class CSAppendTopic : public Module
CommandCSAppendTopic commandcsappendtopic;
public:
- CSAppendTopic(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ CSAppendTopic(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcsappendtopic(this)
{
this->SetAuthor("SGR");
diff --git a/modules/commands/cs_enforce.cpp b/modules/commands/cs_enforce.cpp
index 26885c9b0..395926a46 100644
--- a/modules/commands/cs_enforce.cpp
+++ b/modules/commands/cs_enforce.cpp
@@ -203,7 +203,7 @@ class CSEnforce : public Module
CommandCSEnforce commandcsenforce;
public:
- CSEnforce(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ CSEnforce(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcsenforce(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp
index 3aa8ed862..71e0eea9c 100644
--- a/modules/commands/cs_entrymsg.cpp
+++ b/modules/commands/cs_entrymsg.cpp
@@ -161,7 +161,7 @@ class CSEntryMessage : public Module
CommandEntryMessage commandentrymsg;
public:
- CSEntryMessage(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED), commandentrymsg(this)
+ CSEntryMessage(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), commandentrymsg(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/cs_set_misc.cpp b/modules/commands/cs_set_misc.cpp
index 8f145ab88..fd73d8f90 100644
--- a/modules/commands/cs_set_misc.cpp
+++ b/modules/commands/cs_set_misc.cpp
@@ -54,7 +54,7 @@ class CSSetMisc : public Module
CommandCSSASetMisc commandcssasetmisc;
public:
- CSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ CSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcssetmisc(this), commandcssasetmisc(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/cs_sync.cpp b/modules/commands/cs_sync.cpp
index 2937cc4fc..29c3e6ef4 100644
--- a/modules/commands/cs_sync.cpp
+++ b/modules/commands/cs_sync.cpp
@@ -51,7 +51,7 @@ class CSSync : public Module
{
CommandCSSync commandcssync;
public:
- CSSync(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ CSSync(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcssync(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/cs_tban.cpp b/modules/commands/cs_tban.cpp
index 404279bef..5aa15acd8 100644
--- a/modules/commands/cs_tban.cpp
+++ b/modules/commands/cs_tban.cpp
@@ -102,7 +102,7 @@ class CSTBan : public Module
CommandCSTBan commandcstban;
public:
- CSTBan(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ CSTBan(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcstban(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/hs_request.cpp b/modules/commands/hs_request.cpp
index 7686794f5..861448240 100644
--- a/modules/commands/hs_request.cpp
+++ b/modules/commands/hs_request.cpp
@@ -301,7 +301,7 @@ class HSRequest : public Module
CommandHSWaiting commandhswaiting;
public:
- HSRequest(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ HSRequest(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandhsrequest(this), commandhsactive(this), commandhsreject(this), commandhswaiting(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/ns_set_misc.cpp b/modules/commands/ns_set_misc.cpp
index f0ee269cc..9a9910c11 100644
--- a/modules/commands/ns_set_misc.cpp
+++ b/modules/commands/ns_set_misc.cpp
@@ -70,7 +70,7 @@ class NSSetMisc : public Module
CommandNSSASetMisc commandnssasetmisc;
public:
- NSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
+ NSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandnssetmisc(this), commandnssasetmisc(this)
{
this->SetAuthor("Anope");
diff --git a/modules/commands/os_defcon.cpp b/modules/commands/os_defcon.cpp
index ea513e1dc..f5c28d38f 100644
--- a/modules/commands/os_defcon.cpp
+++ b/modules/commands/os_defcon.cpp
@@ -335,7 +335,7 @@ class OSDefcon : public Module
}
public:
- OSDefcon(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED), session_service("session"), akills("xlinemanager/sgline"), commandosdefcon(this)
+ OSDefcon(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), session_service("session"), akills("xlinemanager/sgline"), commandosdefcon(this)
{
this->SetAuthor("Anope");