View restart_check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#this is a coment for the code | |
set -x | |
sleep 60 | |
IP=$(hostname -i) | |
HOSTNAME=$(hostname -f) | |
echo "$HOSTNAME online. IP address: $IP" > ./email.txt | |
date >> ./email.txt |
View ssh_agent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Invoke this once, run again after a restart of the system. | |
set -x | |
SSH_ENV=$HOME/.ssh/environment | |
function start_agent { | |
echo "Initialising new SSH agent..." | |
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV} | |
echo succeeded | |
chmod 600 ${SSH_ENV} | |
. ${SSH_ENV} > /dev/null |
View iphost
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
#ip vars | |
ip=$(hostname -I | cut -f2 -d' ') | |
#use this when in private newtwork to avoid network issues. | |
ip2="0.0.0.0" | |
this_host=$(hostname -f) |
View 5lineslog.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$file = file("../log/simplelogger.log"); | |
for ($i = max(0, count($file)-5); $i < count($file); $i++) { | |
var_dump($line); | |
echo $file[$i] . "\n"; | |
} |
View searchstring.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//simulating the array from string: | |
$s = ' | |
[2018-02-19 14:08:32] [info] status=GOOD&unit_status=GOOD&hostname=acme | |
[2018-02-19 14:08:32] [alert] Wrong status! (Not "DEGRADED") | |
[2018-02-19 14:08:37] [info] Request with params {"status":"GOOD","unit_status":"GOOD","hostname":"joe"} | |
[2018-02-19 14:08:37] [info] status=GOOD&unit_status=GOOD&hostname=joe | |
[2018-02-19 14:08:37] [alert] Wrong status! (Not "DEGRADED") | |
'; |
View searchstring2.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//simulating the array from string: | |
$s = ' | |
[2018-02-19 14:08:32] [info] status=GOOD&unit_status=GOOD&hostname=acme | |
[2018-02-19 14:08:32] [alert] Wrong status! (Not "DEGRADED") | |
[2018-02-19 14:08:37] [info] Request with params {"status":"GOOD","unit_status":"GOOD","hostname":"joe"} | |
[2018-02-19 14:08:37] [info] status=GOOD&unit_status=GOOD&hostname=joe | |
[2018-02-19 14:08:37] [alert] Wrong status! (Not "DEGRADED") | |
'; |
View loadnewarray.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$lines=array(); | |
$fp = fopen("../log/simplelogger.log", "r"); | |
//tail off last x lines of the log file | |
while(!feof($fp)) | |
{ | |
$line = fgets($fp); | |
array_push($lines, $line); | |
if (count($lines)>10) |
View selinux disable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#disable selinux on next reboot | |
sed -i 's/enforcing/disabled/g' /etc/selinux/config /etc/selinux/config | |
sestatus | |
#put in permissive mode | |
setenforce 0 |
View ssh_agent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Invoke this once, run again after a restart of the system. | |
set -x | |
SSH_ENV=$HOME/.ssh/environment | |
function start_agent { | |
echo "Initialising new SSH agent..." | |
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV} | |
echo succeeded | |
chmod 600 ${SSH_ENV} | |
. ${SSH_ENV} > /dev/null |
View strap_lamp7_ssl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
set -x | |
# check hostname | |
hostname -f | |
# update and install Apache | |
yum -y update | |
yum -y install vim httpd | |
systemctl restart httpd | |
# backup of the httpd.conf file |
OlderNewer