diff options
Diffstat (limited to 'init-sh')
-rwxr-xr-x | init-sh/file_perm.sh | 6 | ||||
-rwxr-xr-x | init-sh/level3.sh | 2 | ||||
-rwxr-xr-x | init-sh/level4.sh | 2 | ||||
-rwxr-xr-x | init-sh/level5.sh | 2 |
4 files changed, 4 insertions, 8 deletions
diff --git a/init-sh/file_perm.sh b/init-sh/file_perm.sh index be834b7..acce5c0 100755 --- a/init-sh/file_perm.sh +++ b/init-sh/file_perm.sh @@ -5,11 +5,7 @@ IFS=" echo -n "Setting files permissions : " -for line in `cat /$1`; do - file=`echo ${line} | awk '{print $1}'` - owner=`echo ${line} | awk '{print $2}'` - perm=`echo ${line} | awk '{print $3}'` - +cat $1 | while read file owner perm; do if [ -a "${file}" ]; then if [ ${owner} != "current" ]; then chown ${owner} ${file} diff --git a/init-sh/level3.sh b/init-sh/level3.sh index 42b4542..5859689 100755 --- a/init-sh/level3.sh +++ b/init-sh/level3.sh @@ -58,7 +58,7 @@ echo -e "\t- Security warning in syslog : \"yes\" :" # Crontab echo "Adding permission check in crontab (scheduled every midnight) :" -AddRules "0 0-23 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab +AddRules "0 0 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab echo -n "Running lilo to record new config : " /sbin/lilo >& /dev/null diff --git a/init-sh/level4.sh b/init-sh/level4.sh index 5f2a79c..00ea93d 100755 --- a/init-sh/level4.sh +++ b/init-sh/level4.sh @@ -71,7 +71,7 @@ echo "Adding promisc check in crontab (scheduled every minutes) :" AddRules "*/1 * * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/promisc_check.sh" /etc/crontab echo "Adding permission check in crontab (scheduled every midnight) :" -AddRules "0 0-23 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab +AddRules "0 0 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab # Do you want a password ? LiloUpdate; diff --git a/init-sh/level5.sh b/init-sh/level5.sh index 6b90e59..272267f 100755 --- a/init-sh/level5.sh +++ b/init-sh/level5.sh @@ -63,7 +63,7 @@ echo "Adding promisc check in crontab (scheduled every minutes) :" AddRules "*/1 * * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/promisc_check.sh" /etc/crontab echo "Adding permission check in crontab (schedued every midnight) :" -AddRules "0 0-23 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab +AddRules "0 0 * * * root nice --adjustment=+19 /etc/security/msec/cron-sh/file_check.sh" /etc/crontab ################################################### # Wanna a password ? |