Skip to content

Commit

Permalink
fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
da667 committed Apr 27, 2020
1 parent 9db4965 commit 159406a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Autosnort-Ubuntu/AVATAR/autosnort-ubuntu-AVATAR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -334,12 +334,12 @@ print_status "Checking for snort user and group.."

getent passwd snort &>> $logfile
if [ $? -eq 0 ]; then
print_notificiation "snort user exists. Verifying group exists.."
print_notification "snort user exists. Verifying group exists.."
id -g snort &>> $logfile
if [ $? -eq 0 ]; then
print_notification "snort group exists."
else
print_noficiation "snort group does not exist. Creating.."
print_notification "snort group does not exist. Creating.."
groupadd snort
usermod -G snort snort
fi
Expand Down
2 changes: 1 addition & 1 deletion Autosnort-Ubuntu/AVATAR/snortd.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ExecStartPre=/usr/sbin/ip link set up promisc on arp off multicast off dev snort
ExecStartPre=/usr/sbin/ethtool -K snort_iface1 rx off tx off gro off lro off
ExecStartPre=/usr/sbin/ethtool -K snort_iface2 rx off tx off gro off lro off

ExecStart=snort_basedir/bin/snort -D -u snort -g snort -c /opt/snort/etc/snort.conf -Q --daq afpacket --daq-mode inline -i snort_iface1:snort_iface2
ExecStart=snort_basedir/bin/snort -D -u snort -g snort -c /opt/snort/etc/snort.conf -Q --daq afpacket --daq-mode inline -i snort_iface1:snort_iface2

KillMode=process

Expand Down

0 comments on commit 159406a

Please sign in to comment.