1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 02:53:12 +02:00
Files
unrealircd/Setup
T
stskeeps 1e7c36aac0 +- Added script ./Setup which makes the user forced through Unreal.nfo, FAQ,
+  Config, and all the things we want them to read/do to compile the IRCd
2000-08-07 15:09:06 +00:00

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".