mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-06 02:53:12 +02:00
1e7c36aac0
+ Config, and all the things we want them to read/do to compile the IRCd
26 lines
603 B
Bash
Executable File
26 lines
603 B
Bash
Executable File
#!/bin/sh
|
|
echo "Starting up Setup"
|
|
echo "Press enter to proceed to setup..."
|
|
read cc
|
|
more Unreal.nfo
|
|
echo "Press enter to proceed to FAQ..."
|
|
read cc
|
|
more doc/faq
|
|
echo "Press enter to proceed to configuration..."
|
|
read cc
|
|
./Config
|
|
echo "Press enter to proceed to compiling..."
|
|
read cc
|
|
make
|
|
echo "Press enter to proceed to ircd.conf making..."
|
|
read cc
|
|
./makeconf
|
|
echo "Press enter to proceed to network configuration..."
|
|
read cc
|
|
cd networks
|
|
./makenet
|
|
echo "Press enter to proceed to dynamic ircd configuration..."
|
|
read cc
|
|
pico unrealircd.conf
|
|
echo "You should be able to run UnrealIRCd using ./ircd now".
|