Compare commits
4 commits
842d04c63a
...
0148f909d9
Author | SHA1 | Date | |
---|---|---|---|
0148f909d9 | |||
0606e93cde | |||
bf9eb0ef73 | |||
cd14df1f11 |
4 changed files with 73 additions and 20 deletions
43
build
Executable file
43
build
Executable file
|
@ -0,0 +1,43 @@
|
|||
#!/bin/sh -e
|
||||
# install.sh
|
||||
installtarget=/usr/local/bin
|
||||
chatlogdir=/var/log/bunkchat
|
||||
chatlog=chat.log
|
||||
|
||||
if ! [$(id -u) = 0]; then
|
||||
echo "ERROR: please run install with root permission" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
chattrfailed() {
|
||||
set +e
|
||||
rm -rf $chatlogdir
|
||||
echo
|
||||
echo "ERROR: could not set append only attribute in ${chatlogdir}"
|
||||
echo " does your filesystem support 'chattr +a' ?"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# do this setup first in case chattr fails
|
||||
# mk chat directory and touch file
|
||||
mkdir $chatlogdir
|
||||
chmod 755 $chatlogdir
|
||||
|
||||
touch ${chatlogdir}/${chatlog}
|
||||
chmod 666 ${chatlogdir}/${chatlog}
|
||||
# if chattr +a not supported on this file system catch error and clean up
|
||||
chattr +a ${chatlogdir}/${chatlog} || chattrfailed
|
||||
|
||||
cp proclaim heed scry $installtarget
|
||||
|
||||
chmod 755 ${installtarget}/proclaim
|
||||
chmod 755 ${installtarget}/heed
|
||||
chmod 755 ${installtarget}/scry
|
||||
|
||||
chown root:root ${installtarget}/proclaim
|
||||
chown root:root ${installtarget}/heed
|
||||
chown root:root ${installtarget}/scry
|
||||
|
||||
|
||||
echo "SUCCESS! bunkchat installed!"
|
||||
exit 0
|
13
heed
13
heed
|
@ -1,12 +1,17 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
chatlog=var/log/bunkchat/chat.log
|
||||
|
||||
clear
|
||||
|
||||
figlet -f future heed - bunkchat
|
||||
echo "╻ ╻┏━╸┏━╸╺┳┓ ┏┓ ╻ ╻┏┓╻╻┏ ┏━╸╻ ╻┏━┓╺┳╸"
|
||||
echo "┣━┫┣╸ ┣╸ ┃┃ ╺━╸ ┣┻┓┃ ┃┃┗┫┣┻┓┃ ┣━┫┣━┫ ┃ "
|
||||
echo "╹ ╹┗━╸┗━╸╺┻┛ ┗━┛┗━┛╹ ╹╹ ╹┗━╸╹ ╹╹ ╹ ╹ "
|
||||
|
||||
echo "#######################################################################"
|
||||
echo "# Take heed, $USER! This is a group chat with everyone on the server! #"
|
||||
echo "# You can view earlier chat with 'scry' or 'less /srv/bunkchat.txt' #"
|
||||
echo " Take heed, $USER! This is a group chat with everyone on the server!"
|
||||
echo " You can view earlier chat with 'scry' or 'less /srv/bunkchat.txt'"
|
||||
echo "#######################################################################"
|
||||
echo
|
||||
|
||||
tail -f /srv/bunkchat.txt
|
||||
tail -f $chatlog
|
||||
|
|
34
proclaim
34
proclaim
|
@ -1,17 +1,18 @@
|
|||
#!/bin/bash -e
|
||||
#!/bin/sh -e
|
||||
|
||||
# make username uppercase
|
||||
username=$(echo "$USER" | tr '[:lower:]' '[:upper:]')
|
||||
timezone="America/New_York"
|
||||
declare prompt
|
||||
timezone=UTC
|
||||
chatlog=/var/log/bunkchat/chat.log
|
||||
prompt=""
|
||||
|
||||
makeSlug () {
|
||||
# make time and date
|
||||
time=$(TZ=${timezone} date +%I:%M%p)
|
||||
date=$(TZ=${timezone} date +%m/%d)
|
||||
# make time and date
|
||||
time=$(TZ=${timezone} date +%I:%M%p)
|
||||
date=$(TZ=${timezone} date +%m/%d)
|
||||
|
||||
# make name/time string
|
||||
prompt="${username}-${date}-${time}"
|
||||
# make name/time string
|
||||
prompt="${username}-${date}-${time}"
|
||||
}
|
||||
|
||||
# enter bunkchat mode (clear the screen)
|
||||
|
@ -19,11 +20,14 @@ clear
|
|||
|
||||
while true
|
||||
do
|
||||
figlet -f future proclaim - bunkchat
|
||||
echo "You may view old chat with 'scry', heathen."
|
||||
echo "-------------------------------------------"
|
||||
read -r -p "speak to the server: " text
|
||||
makeSlug
|
||||
echo "${prompt}: $text" >> /srv/bunkchat.txt
|
||||
clear
|
||||
echo "┏━┓┏━┓┏━┓┏━╸╻ ┏━┓╻┏┳┓ ┏┓ ╻ ╻┏┓╻╻┏ ┏━╸╻ ╻┏━┓╺┳╸"
|
||||
echo "┣━┛┣┳┛┃ ┃┃ ┃ ┣━┫┃┃┃┃ ╺━╸ ┣┻┓┃ ┃┃┗┫┣┻┓┃ ┣━┫┣━┫ ┃ "
|
||||
echo "╹ ╹┗╸┗━┛┗━╸┗━╸╹ ╹╹╹ ╹ ┗━┛┗━┛╹ ╹╹ ╹┗━╸╹ ╹╹ ╹ ╹ "
|
||||
echo "You may view old chat with 'scry'!"
|
||||
echo "----------------------------------"
|
||||
printf "speak to the server: " >&2
|
||||
read -r text
|
||||
makeSlug
|
||||
echo "${prompt}: $text" >> $chatlog
|
||||
clear
|
||||
done
|
||||
|
|
3
scry
3
scry
|
@ -1,3 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
chatlog=/var/log/bunkchat/chat.log
|
||||
|
||||
less /srv/bunkchat.txt
|
||||
less $chatlog
|
||||
|
|
Loading…
Reference in a new issue