summaryrefslogtreecommitdiff
path: root/athena-start
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-17 07:09:10 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-17 07:09:10 +0000
commit1110866d367cb7a158e0b4c9dc2a16e15d3ca90d (patch)
treea97c9c979c9d47c72112b6438b2d5bc6a11c6352 /athena-start
parent6571c71701dca9d85f33b7be245879b6a9906d81 (diff)
downloadhercules-1110866d367cb7a158e0b4c9dc2a16e15d3ca90d.tar.gz
hercules-1110866d367cb7a158e0b4c9dc2a16e15d3ca90d.tar.bz2
hercules-1110866d367cb7a158e0b4c9dc2a16e15d3ca90d.tar.xz
hercules-1110866d367cb7a158e0b4c9dc2a16e15d3ca90d.zip
Removed the 'create athena.txt' step from athena-start as the server does that automatically.
Removed the 'kill -9' action from athena-start, as it prevents the server from shutting down cleanly. If your process gets stuck, kill it manually (or add a hard-stop option). Fixed one wrong revision number in changelog. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11924 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'athena-start')
-rw-r--r--athena-start13
1 files changed, 1 insertions, 12 deletions
diff --git a/athena-start b/athena-start
index 742145604..ab5ac3de0 100644
--- a/athena-start
+++ b/athena-start
@@ -21,16 +21,6 @@ echo "checking..."
#EOF
}
-#check_account() {
-# if [ ! -f ./save/account.txt ]; then
-# echo "0 s1 p1 - S 0" > save/account.txt
-# echo "1 s2 p2 - S 0" >>save/account.txt
-# echo "2 s3 p3 - S 0" >>save/account.txt
-# echo "3 s4 p4 - S 0" >>save/account.txt
-# echo "4 s5 p5 - S 0" >>save/account.txt
-# fi
-#}
-
check_files() {
for i in ${L_SRV} ${C_SRV} ${M_SRV}
@@ -52,7 +42,6 @@ echo "Looks good, a nice Athena!"
case $1 in
'start')
print_start
-# check_account
check_files
exec ./${L_SRV}&
@@ -62,7 +51,7 @@ case $1 in
echo "Now Started Athena."
;;
'stop')
- ps ax | grep -E "${L_SRV}|${C_SRV}|${M_SRV}" | awk '{print $1}' | xargs kill -9
+ ps ax | grep -E "${L_SRV}|${C_SRV}|${M_SRV}" | awk '{print $1}' | xargs kill
;;
'restart')
$0 stop