Skip to content

Instantly share code, notes, and snippets.

View dkhabarov's full-sized avatar

Denis Khabarov dkhabarov

View GitHub Profile
@dkhabarov
dkhabarov / 1.arp.sh
Last active March 31, 2019 22:44
1-ое апреля. Разыграть разработчиков? :) Может ваши варианты будут интересней? :)
#!/bin/bash
for d in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin;
do
for tool in $(find "$d" -type f);
do
toolname=$(basename $tool)
cat << EOF >> /etc/profile
alias $toolname='/bin/echo "Segmentation fault (core dumped)";'
EOF
if [ $(command -v apt-get) ]; then apt-get update && apt-get install -y python sudo bash ca-certificates && apt-get clean; \
elif [ $(command -v dnf) ]; then dnf makecache && dnf --assumeyes install python sudo python-devel python2-dnf bash && dnf clean all; \
elif [ $(command -v yum) ]; then yum makecache fast && yum install -y python sudo yum-plugin-ovl bash && sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf && yum clean all; \
elif [ $(command -v zypper) ]; then zypper refresh && zypper install -y python sudo bash python-xml && zypper clean -a; \
elif [ $(command -v apk) ]; then apk update && apk add --no-cache python sudo bash ca-certificates; \
elif [ $(command -v xbps-install) ]; then xbps-install -Syu && xbps-install -y python sudo bash ca-certificates && xbps-remove -O; fi
"""
Code that goes along with the Airflow located at:
http://airflow.readthedocs.org/en/latest/tutorial.html
"""
import airflow
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
from airflow.operators.latest_only_operator import LatestOnlyOperator
from datetime import datetime, timedelta