stuff
This commit is contained in:
parent
cc9fb4986a
commit
43d232aa75
114
slack-dist/bin/distro
Executable file
114
slack-dist/bin/distro
Executable file
@ -0,0 +1,114 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Detects which OS and if it is Linux then it will detect which Linux Distribution.
|
||||||
|
|
||||||
|
OS=`uname -s`
|
||||||
|
REV=`uname -r`
|
||||||
|
MACH=`uname -m`
|
||||||
|
|
||||||
|
if [ "${OS}" = "SunOS" ] ; then
|
||||||
|
OS=Solaris
|
||||||
|
ARCH=`uname -p`
|
||||||
|
OSSTR="${OS} ${REV}(${ARCH} `uname -v`)"
|
||||||
|
|
||||||
|
elif [ "${OS}" = "AIX" ] ; then
|
||||||
|
OSSTR="${OS} `oslevel` (`oslevel -r`)"
|
||||||
|
|
||||||
|
elif [ "${OS}" = "Linux" ] ; then
|
||||||
|
KERNEL=`uname -r`
|
||||||
|
|
||||||
|
if [ -f /etc/fedora-release ]; then
|
||||||
|
DIST=$(cat /etc/fedora-release | awk '{print $1}')
|
||||||
|
REV=`cat /etc/fedora-release | sed s/.*release\ // | sed s/\ .*//`
|
||||||
|
|
||||||
|
elif [ -f /etc/redhat-release ] ; then
|
||||||
|
DIST=$(cat /etc/redhat-release | awk '{print $1}')
|
||||||
|
if [ "${DIST}" = "CentOS" ]; then
|
||||||
|
DIST="CentOS"
|
||||||
|
elif [ "${DIST}" = "Mandriva" ]; then
|
||||||
|
DIST="Mandriva"
|
||||||
|
PSEUDONAME=`cat /etc/mandriva-release | sed s/.*\(// | sed s/\)//`
|
||||||
|
REV=`cat /etc/mandriva-release | sed s/.*release\ // | sed s/\ .*//`
|
||||||
|
elif [ -f /etc/oracle-release ]; then
|
||||||
|
DIST="Oracle"
|
||||||
|
else
|
||||||
|
DIST="RedHat"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
|
||||||
|
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
|
||||||
|
|
||||||
|
elif [ -f /etc/mandrake-release ] ; then
|
||||||
|
DIST='Mandrake'
|
||||||
|
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
|
||||||
|
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
|
||||||
|
|
||||||
|
elif [ -f /etc/devuan_version ] ; then
|
||||||
|
DIST="Devuan `cat /etc/devuan_version`"
|
||||||
|
REV=""
|
||||||
|
|
||||||
|
elif [ -f /etc/debian_version ] ; then
|
||||||
|
DIST="Debian `cat /etc/debian_version`"
|
||||||
|
REV=""
|
||||||
|
ID=`lsb_release -i | awk -F ':' '{print $2}' | sed 's/ //g'`
|
||||||
|
if [ "${ID}" = "Raspbian" ] ; then
|
||||||
|
DIST="Raspbian `cat /etc/debian_version`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif [ -f /etc/gentoo-release ] ; then
|
||||||
|
DIST="Gentoo"
|
||||||
|
REV=$(tr -d '[[:alpha:]]' </etc/gentoo-release | tr -d " ")
|
||||||
|
|
||||||
|
elif [ -f /etc/arch-release ] ; then
|
||||||
|
DIST="Arch Linux"
|
||||||
|
REV="" # Omit version since Arch Linux uses rolling releases
|
||||||
|
IGNORE_LSB=1 # /etc/lsb-release would overwrite $REV with "rolling"
|
||||||
|
|
||||||
|
elif [ -f /etc/os-release ] ; then
|
||||||
|
DIST=$(grep '^NAME=' /etc/os-release | cut -d= -f2- | tr -d '"')
|
||||||
|
REV=$(grep '^VERSION_ID=' /etc/os-release | cut -d= -f2- | tr -d '"')
|
||||||
|
|
||||||
|
elif [ -f /etc/openwrt_version ] ; then
|
||||||
|
DIST="OpenWrt"
|
||||||
|
REV=$(cat /etc/openwrt_version)
|
||||||
|
|
||||||
|
elif [ -f /etc/pld-release ] ; then
|
||||||
|
DIST=$(cat /etc/pld-release)
|
||||||
|
REV=""
|
||||||
|
|
||||||
|
elif [ -f /etc/SuSE-release ] ; then
|
||||||
|
DIST=$(echo SLES $(grep VERSION /etc/SuSE-release | cut -d = -f 2 | tr -d " "))
|
||||||
|
REV=$(echo SP$(grep PATCHLEVEL /etc/SuSE-release | cut -d = -f 2 | tr -d " "))
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /etc/lsb-release -a "${IGNORE_LSB}" != 1 ] ; then
|
||||||
|
LSB_DIST=$(lsb_release -si)
|
||||||
|
LSB_REV=$(lsb_release -sr)
|
||||||
|
if [ "$LSB_DIST" != "" ] ; then
|
||||||
|
DIST=$LSB_DIST
|
||||||
|
fi
|
||||||
|
if [ "$LSB_REV" != "" ] ; then
|
||||||
|
REV=$LSB_REV
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "`uname -a | awk '{print $(NF)}'`" = "DD-WRT" ] ; then
|
||||||
|
DIST="dd-wrt"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${REV}" ]
|
||||||
|
then
|
||||||
|
OSSTR="${DIST} ${REV}"
|
||||||
|
else
|
||||||
|
OSSTR="${DIST}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif [ "${OS}" = "Darwin" ] ; then
|
||||||
|
if [ -f /usr/bin/sw_vers ] ; then
|
||||||
|
OSSTR=`/usr/bin/sw_vers|grep -v Build|sed 's/^.*:.//'| tr "\n" ' '`
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif [ "${OS}" = "FreeBSD" ] ; then
|
||||||
|
OSSTR=`/usr/bin/uname -mior`
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ${OSSTR}
|
103
slack-dist/bin/slackInstall.sh
Normal file
103
slack-dist/bin/slackInstall.sh
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#TSYS Slack installer
|
||||||
|
#Use as a reference for other TSYS scripts
|
||||||
|
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Global variables
|
||||||
|
#######################################################################################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
export MGMT_INT="$(netstat -rn |grep 0.0.0.0|awk '{print $NF}' |head -n1 )"
|
||||||
|
export ENVIP="$(echo $MGMT_IP|awk -F '.' '{print $2}')"
|
||||||
|
|
||||||
|
export DIST_SERVER="http://tsys-techops.turnsys.net/"
|
||||||
|
export DIST_ROOT_PATH="slack-dist"
|
||||||
|
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Execution begins
|
||||||
|
#######################################################################################################################################################
|
||||||
|
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Step 1. determine server type and site
|
||||||
|
#######################################################################################################################################################
|
||||||
|
|
||||||
|
#Will be useful later when we have fleets of kvm/lxc etc machines, commented out for now.
|
||||||
|
|
||||||
|
#if [ $(hostname -s|egrep -i -c -E 'ts|ts[0-9]|ts[0-9][0-9]|ts[0-9][0-9][0-9]|linux') -eq 1 ]; then
|
||||||
|
#export server_type=ts
|
||||||
|
#fi
|
||||||
|
|
||||||
|
#if [ $(hostname -s|egrep -c -E 'cvm') -eq 1 ]; then
|
||||||
|
#export server_type=cvm
|
||||||
|
#fi
|
||||||
|
|
||||||
|
|
||||||
|
case $server_type in
|
||||||
|
ts)
|
||||||
|
export SERVER_TYPE="ts"
|
||||||
|
;;
|
||||||
|
cvm)
|
||||||
|
export SERVER_TYPE="cvm"
|
||||||
|
;;
|
||||||
|
bvm)
|
||||||
|
export SERVER_TYPE="bvm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
export SERVER_TYPE="prod"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case $ENVIP in
|
||||||
|
253)
|
||||||
|
export SITE="ovh"
|
||||||
|
;;
|
||||||
|
251)
|
||||||
|
export SITE="aus"
|
||||||
|
;;
|
||||||
|
40)
|
||||||
|
export SITE="satx"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Step 2: Fixup the /etc/hosts file
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Static /etc/hosts bits
|
||||||
|
cat > /etc/hosts << HOSTFILESTATIC
|
||||||
|
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
||||||
|
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
||||||
|
HOSTFILESTATIC
|
||||||
|
|
||||||
|
#Dynamic /etc/hosts bits
|
||||||
|
cat >> /etc/hosts <<HOSTFILEDYNAMIC
|
||||||
|
127.0.1.1 $(hostname) $(hostname -s)
|
||||||
|
$MGMT_IP $(hostname) $(hostname -s)
|
||||||
|
HOSTFILEDYNAMIC
|
||||||
|
|
||||||
|
#######################################################################################################################################################
|
||||||
|
#Step 3: Grab slack runtime bits and deploy slack
|
||||||
|
#######################################################################################################################################################
|
||||||
|
curl $DIST_SERVER/$DIST_ROOT_PATH/distro > /usr/bin/distro
|
||||||
|
chmod +x /usr/bin/distro
|
||||||
|
|
||||||
|
apt-get -y install make perl rsync
|
||||||
|
|
||||||
|
mkdir /tmp/slackDist
|
||||||
|
wget $DIST_SERVER/$DIST_ROOT_PATH/slackDist.tar.gz -O /tmp/slackDist/slackDist.tar.gz
|
||||||
|
cd /tmp/slackDist
|
||||||
|
tar xvfz slackDist.tar.gz
|
||||||
|
make install
|
||||||
|
cd /tmp
|
||||||
|
rm -rf slackDist
|
||||||
|
|
||||||
|
mkdir /root/.ssh
|
||||||
|
chmod 700 /root/.ssh
|
||||||
|
chown -R root:root /root/.ssh
|
||||||
|
|
||||||
|
wget $DIST_SERVER/$DIST_ROOT_PATH/env/$SITE/SlackConfig-$LR-$SERVER_TYPE.config -O /etc/slack.conf
|
||||||
|
wget $DIST_SERVER/$DIST_ROOT_PATH/env/$SITE/SlackSSH-$SITE-$SERVER_TYPE.config -O /root/.ssh/config
|
||||||
|
wget $DIST_SERVER/$DIST_ROOT_PATH/env/$SITE/SlackSSH-$SITE-$SERVER_TYPE.key -O /root/.ssh/SlackSSH-$SITE-$SERVER_TYPE.key
|
||||||
|
chmod 400 /root/.ssh/SlackSSH-$LR-$SERVER_TYPE.key
|
||||||
|
chmod 400 /root/.ssh/config
|
39
slack-dist/dist/Makefile
vendored
Normal file
39
slack-dist/dist/Makefile
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# Makefile for slack/src
|
||||||
|
# $Id: Makefile 187 2008-03-03 02:00:18Z alan $
|
||||||
|
include Makefile.common
|
||||||
|
|
||||||
|
BACKENDS = slack-getroles slack-installfiles slack-runscript slack-sync slack-stage slack-rolediff
|
||||||
|
|
||||||
|
all:
|
||||||
|
|
||||||
|
install: install-bin install-conf install-lib install-man
|
||||||
|
|
||||||
|
install-bin: all
|
||||||
|
$(MKDIR) $(DESTDIR)$(sbindir)
|
||||||
|
$(INSTALL) slack $(DESTDIR)$(sbindir)
|
||||||
|
$(MKDIR) $(DESTDIR)$(bindir)
|
||||||
|
$(INSTALL) slack-diff $(DESTDIR)$(bindir)
|
||||||
|
$(MKDIR) $(DESTDIR)$(slack_libexecdir)
|
||||||
|
@set -ex;\
|
||||||
|
for i in $(BACKENDS); do \
|
||||||
|
$(INSTALL) $$i $(DESTDIR)$(slack_libexecdir); done
|
||||||
|
$(INSTALL) -d -m $(PRIVDIRMODE) $(DESTDIR)$(slack_localstatedir)
|
||||||
|
$(INSTALL) -d -m $(PRIVDIRMODE) $(DESTDIR)$(slack_localcachedir)
|
||||||
|
|
||||||
|
install-conf: all
|
||||||
|
$(MKDIR) $(DESTDIR)$(sysconfdir)
|
||||||
|
$(INSTALL) -m 0644 slack.conf $(DESTDIR)$(sysconfdir)
|
||||||
|
|
||||||
|
install-lib: all
|
||||||
|
$(MKDIR) $(DESTDIR)$(slack_libdir)
|
||||||
|
$(INSTALL) -m 0644 Slack.pm $(DESTDIR)$(slack_libdir)
|
||||||
|
|
||||||
|
install-man: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
|
||||||
|
realclean: clean
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
|
||||||
|
test:
|
27
slack-dist/dist/Makefile.common
vendored
Executable file
27
slack-dist/dist/Makefile.common
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
# Common code included in every Makefile
|
||||||
|
# $Id: Makefile.common 189 2008-04-21 00:52:56Z sundell $
|
||||||
|
|
||||||
|
PACKAGE=slack
|
||||||
|
VERSION=0.15.2
|
||||||
|
|
||||||
|
DESTDIR =
|
||||||
|
|
||||||
|
prefix = /
|
||||||
|
exec_prefix = /usr
|
||||||
|
sysconfdir = ${prefix}/etc
|
||||||
|
mandir = ${exec_prefix}/share/man
|
||||||
|
bindir = ${exec_prefix}/bin
|
||||||
|
sbindir = ${exec_prefix}/sbin
|
||||||
|
libdir = ${exec_prefix}/lib
|
||||||
|
libexecdir = ${exec_prefix}/lib
|
||||||
|
localstatedir = ${prefix}/var
|
||||||
|
|
||||||
|
slack_libdir = ${libdir}/slack
|
||||||
|
slack_libexecdir = ${libexecdir}/slack
|
||||||
|
slack_localstatedir = ${localstatedir}/lib/slack
|
||||||
|
slack_localcachedir = ${localstatedir}/cache/slack
|
||||||
|
|
||||||
|
INSTALL = install
|
||||||
|
MKDIR = mkdir -p
|
||||||
|
|
||||||
|
PRIVDIRMODE = 0700
|
371
slack-dist/dist/Slack.pm
vendored
Normal file
371
slack-dist/dist/Slack.pm
vendored
Normal file
@ -0,0 +1,371 @@
|
|||||||
|
# $Id: Slack.pm 189 2008-04-21 00:52:56Z sundell $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
|
||||||
|
package Slack;
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use strict;
|
||||||
|
use Carp qw(cluck confess croak);
|
||||||
|
use File::Find;
|
||||||
|
use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG);
|
||||||
|
|
||||||
|
use base qw(Exporter);
|
||||||
|
use vars qw($VERSION @EXPORT @EXPORT_OK $DEFAULT_CONFIG_FILE);
|
||||||
|
$VERSION = '0.15.2';
|
||||||
|
@EXPORT = qw();
|
||||||
|
@EXPORT_OK = qw();
|
||||||
|
|
||||||
|
$DEFAULT_CONFIG_FILE = '/etc/slack.conf';
|
||||||
|
|
||||||
|
my $term;
|
||||||
|
|
||||||
|
my @default_options = (
|
||||||
|
'help|h|?',
|
||||||
|
'version',
|
||||||
|
'verbose|v+',
|
||||||
|
'quiet',
|
||||||
|
'config|C=s',
|
||||||
|
'source|s=s',
|
||||||
|
'rsh|e=s',
|
||||||
|
'cache|c=s',
|
||||||
|
'stage|t=s',
|
||||||
|
'root|r=s',
|
||||||
|
'dry-run|n',
|
||||||
|
'backup|b',
|
||||||
|
'backup-dir=s',
|
||||||
|
'hostname|H=s',
|
||||||
|
);
|
||||||
|
|
||||||
|
sub default_usage ($) {
|
||||||
|
my ($synopsis) = @_;
|
||||||
|
return <<EOF;
|
||||||
|
Usage: $synopsis
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-h, -?, --help
|
||||||
|
Print this help message and exit.
|
||||||
|
|
||||||
|
--version
|
||||||
|
Print the version number and exit.
|
||||||
|
|
||||||
|
-v, --verbose
|
||||||
|
Be verbose.
|
||||||
|
|
||||||
|
--quiet
|
||||||
|
Don't be verbose (Overrides previous uses of --verbose)
|
||||||
|
|
||||||
|
-C, --config FILE
|
||||||
|
Use this config file instead of '$DEFAULT_CONFIG_FILE'.
|
||||||
|
|
||||||
|
-s, --source DIR
|
||||||
|
Source for slack files
|
||||||
|
|
||||||
|
-e, --rsh COMMAND
|
||||||
|
Remote shell for rsync
|
||||||
|
|
||||||
|
-c, --cache DIR
|
||||||
|
Local cache directory for slack files
|
||||||
|
|
||||||
|
-t, --stage DIR
|
||||||
|
Local staging directory for slack files
|
||||||
|
|
||||||
|
-r, --root DIR
|
||||||
|
Root destination for slack files
|
||||||
|
|
||||||
|
-n, --dry-run
|
||||||
|
Don't write any files to disk -- just report what would have been done.
|
||||||
|
|
||||||
|
-b, --backup
|
||||||
|
Make backups of existing files in ROOT that are overwritten.
|
||||||
|
|
||||||
|
--backup-dir DIR
|
||||||
|
Put backups into this directory.
|
||||||
|
|
||||||
|
-H, --hostname HOST
|
||||||
|
Pretend to be running on HOST, instead of the name given by
|
||||||
|
gethostname(2).
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
# Read options from a config file. Arguments:
|
||||||
|
# file => config file to read
|
||||||
|
# opthash => hashref in which to store the options
|
||||||
|
# verbose => whether to be verbose
|
||||||
|
sub read_config (%) {
|
||||||
|
my %arg = @_;
|
||||||
|
my ($config_fh);
|
||||||
|
local $_;
|
||||||
|
|
||||||
|
confess "Slack::read_config: no config file given"
|
||||||
|
if not defined $arg{file};
|
||||||
|
$arg{opthash} = {}
|
||||||
|
if not defined $arg{opthash};
|
||||||
|
|
||||||
|
open($config_fh, '<', $arg{file})
|
||||||
|
or confess "Could not open config file '$arg{file}': $!";
|
||||||
|
|
||||||
|
# Make this into a hash so we can quickly see if we're looking
|
||||||
|
# for a particular option
|
||||||
|
my %looking_for;
|
||||||
|
if (ref $arg{options} eq 'ARRAY') {
|
||||||
|
%looking_for = map { $_ => 1 } @{$arg{options}};
|
||||||
|
}
|
||||||
|
|
||||||
|
while(<$config_fh>) {
|
||||||
|
chomp;
|
||||||
|
s/#.*//; # delete comments
|
||||||
|
s/\s+$//; # delete trailing spaces
|
||||||
|
next if m/^$/; # skip empty lines
|
||||||
|
|
||||||
|
if (m/^[A-Z_]+=\S+/) {
|
||||||
|
my ($key, $value) = split(/=/, $_, 2);
|
||||||
|
$key =~ tr/A-Z_/a-z-/;
|
||||||
|
# Only set options we're looking for
|
||||||
|
next if (%looking_for and not $looking_for{$key});
|
||||||
|
# Don't set options that are already set
|
||||||
|
next if defined $arg{opthash}->{$key};
|
||||||
|
|
||||||
|
$arg{verbose} and print STDERR "Slack::read_config: Setting '$key' to '$value'\n";
|
||||||
|
$arg{opthash}->{$key} = $value;
|
||||||
|
} else {
|
||||||
|
cluck "Slack::read_config: Garbage line '$_' in '$arg{file}' line $. ignored";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
close($config_fh)
|
||||||
|
or confess "Slack::read_config: Could not close config file: $!";
|
||||||
|
|
||||||
|
# The verbose option is treated specially in so many places that
|
||||||
|
# we need to make sure it's defined.
|
||||||
|
$arg{opthash}->{verbose} ||= 0;
|
||||||
|
|
||||||
|
return $arg{opthash};
|
||||||
|
}
|
||||||
|
|
||||||
|
# Just get the exit code from a command that failed.
|
||||||
|
# croaks if anything weird happened.
|
||||||
|
sub get_system_exit (@) {
|
||||||
|
my @command = @_;
|
||||||
|
|
||||||
|
if (WIFEXITED($?)) {
|
||||||
|
my $exit = WEXITSTATUS($?);
|
||||||
|
return $exit if $exit;
|
||||||
|
}
|
||||||
|
if (WIFSIGNALED($?)) {
|
||||||
|
my $sig = WTERMSIG($?);
|
||||||
|
croak "'@command' caught sig $sig";
|
||||||
|
}
|
||||||
|
if ($!) {
|
||||||
|
croak "Syserr on system '@command': $!";
|
||||||
|
}
|
||||||
|
croak "Unknown error on '@command'";
|
||||||
|
}
|
||||||
|
|
||||||
|
sub check_system_exit (@) {
|
||||||
|
my @command = @_;
|
||||||
|
my $exit = get_system_exit(@command);
|
||||||
|
# Exit is non-zero if get_system_exit() didn't croak.
|
||||||
|
croak "'@command' exited $exit";
|
||||||
|
}
|
||||||
|
|
||||||
|
# get options from the command line and the config file
|
||||||
|
# Arguments
|
||||||
|
# opthash => hashref in which to store options
|
||||||
|
# usage => usage statement
|
||||||
|
# required_options => arrayref of options to require -- an exception
|
||||||
|
# will be thrown if these options are not defined
|
||||||
|
# command_line_hash => store options specified on the command line here
|
||||||
|
sub get_options {
|
||||||
|
my %arg = @_;
|
||||||
|
use Getopt::Long;
|
||||||
|
Getopt::Long::Configure('bundling');
|
||||||
|
|
||||||
|
if (not defined $arg{opthash}) {
|
||||||
|
$arg{opthash} = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (not defined $arg{usage}) {
|
||||||
|
$arg{usage} = default_usage($0);
|
||||||
|
}
|
||||||
|
|
||||||
|
my @extra_options = (); # extra arguments to getoptions
|
||||||
|
if (defined $arg{command_line_options}) {
|
||||||
|
@extra_options = @{$arg{command_line_options}};
|
||||||
|
}
|
||||||
|
|
||||||
|
# Make a --quiet function that turns off verbosity
|
||||||
|
$arg{opthash}->{quiet} = sub { $arg{opthash}->{verbose} = 0; };
|
||||||
|
|
||||||
|
unless (GetOptions($arg{opthash},
|
||||||
|
@default_options,
|
||||||
|
@extra_options,
|
||||||
|
)) {
|
||||||
|
print STDERR $arg{usage};
|
||||||
|
exit 1;
|
||||||
|
}
|
||||||
|
if ($arg{opthash}->{help}) {
|
||||||
|
print $arg{usage};
|
||||||
|
exit 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($arg{opthash}->{version}) {
|
||||||
|
print "slack version $VERSION\n";
|
||||||
|
exit 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get rid of the quiet handler
|
||||||
|
delete $arg{opthash}->{quiet};
|
||||||
|
|
||||||
|
# If we've been given a hashref, save our options there at this
|
||||||
|
# stage, so the caller can see what was passed on the command line.
|
||||||
|
# Unfortunately, perl has no .replace function, so we iterate.
|
||||||
|
if (ref $arg{command_line_hash} eq 'HASH') {
|
||||||
|
while (my ($k, $v) = each %{$arg{opthash}}) {
|
||||||
|
$arg{command_line_hash}->{$k} = $v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Use the default config file
|
||||||
|
if (not defined $arg{opthash}->{config}) {
|
||||||
|
$arg{opthash}->{config} = $DEFAULT_CONFIG_FILE;
|
||||||
|
}
|
||||||
|
|
||||||
|
# We need to decide whether to be verbose about reading the config file
|
||||||
|
# Currently we just do it if global verbosity > 2
|
||||||
|
my $verbose_config = 0;
|
||||||
|
if (defined $arg{opthash}->{verbose}
|
||||||
|
and $arg{opthash}->{verbose} > 2) {
|
||||||
|
$verbose_config = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Read options from the config file, passing along the options we've
|
||||||
|
# gotten so far
|
||||||
|
read_config(
|
||||||
|
file => $arg{opthash}->{config},
|
||||||
|
opthash => $arg{opthash},
|
||||||
|
verbose => $verbose_config,
|
||||||
|
);
|
||||||
|
|
||||||
|
# The "verbose" option gets compared a lot and needs to be defined
|
||||||
|
$arg{opthash}->{verbose} ||= 0;
|
||||||
|
|
||||||
|
# The "hostname" option is set specially if it's not defined
|
||||||
|
if (not defined $arg{opthash}->{hostname}) {
|
||||||
|
use Sys::Hostname;
|
||||||
|
$arg{opthash}->{hostname} = hostname;
|
||||||
|
}
|
||||||
|
|
||||||
|
# We can require some options to be set
|
||||||
|
if (ref $arg{required_options} eq 'ARRAY') {
|
||||||
|
for my $option (@{$arg{required_options}}) {
|
||||||
|
if (not defined $arg{opthash}->{$option}) {
|
||||||
|
croak "Required option '$option' not given on command line or specified in config file!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $arg{opthash};
|
||||||
|
}
|
||||||
|
|
||||||
|
sub prompt ($) {
|
||||||
|
my ($prompt) = @_;
|
||||||
|
if (not defined $term) {
|
||||||
|
require Term::ReadLine;
|
||||||
|
$term = new Term::ReadLine 'slack'
|
||||||
|
}
|
||||||
|
|
||||||
|
$term->readline($prompt);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Calls the callback on absolute pathnames of files in the source directory,
|
||||||
|
# and also on names of directories that don't exist in the destination
|
||||||
|
# directory (i.e. where $source/foo exists but $destination/foo does not).
|
||||||
|
sub find_files_to_install ($$$) {
|
||||||
|
my ($source, $destination, $callback) = @_;
|
||||||
|
return find ({
|
||||||
|
wanted => sub {
|
||||||
|
if (-l or not -d _) {
|
||||||
|
# Copy all files, links, etc
|
||||||
|
my $file = $File::Find::name;
|
||||||
|
&$callback($file);
|
||||||
|
} elsif (-d _) {
|
||||||
|
# For directories, we only want to copy it if it doesn't
|
||||||
|
# exist in the destination yet.
|
||||||
|
my $dir = $File::Find::name;
|
||||||
|
# We know the root directory will exist (we make it above),
|
||||||
|
# so skip the base of the source
|
||||||
|
(my $short_source = $source) =~ s#/$##;
|
||||||
|
return if $dir eq $short_source;
|
||||||
|
|
||||||
|
# Strip the $source from the path,
|
||||||
|
# so we can build the destination dir from it.
|
||||||
|
my $subdir = $dir;
|
||||||
|
($subdir =~ s#^$source##)
|
||||||
|
or croak "sub failed: $source|$subdir";
|
||||||
|
|
||||||
|
if (not -d "$destination/$subdir") {
|
||||||
|
&$callback($dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
$source,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
# Runs rsync with the necessary redirection to its filehandles
|
||||||
|
sub wrap_rsync (@) {
|
||||||
|
my @command = @_;
|
||||||
|
my ($pid);
|
||||||
|
|
||||||
|
if ($pid = fork) {
|
||||||
|
# Parent
|
||||||
|
} elsif (defined $pid) {
|
||||||
|
# Child
|
||||||
|
open(STDIN, "<", "/dev/null")
|
||||||
|
or die "Could not redirect STDIN from /dev/null\n";
|
||||||
|
# This redirection is necessary because rsync sends
|
||||||
|
# verbose output to STDOUT
|
||||||
|
open(STDOUT, ">&STDERR")
|
||||||
|
or die "Could not redirect STDOUT to STDERR\n";
|
||||||
|
exec(@command);
|
||||||
|
die "Could not exec '@command': $!\n";
|
||||||
|
} else {
|
||||||
|
die "Could not fork: $!\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
my $kid = waitpid($pid, 0);
|
||||||
|
if ($kid != $pid) {
|
||||||
|
die "waitpid returned $kid\n";
|
||||||
|
} elsif ($?) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Runs rsync with the necessary redirection to its filehandles, but also
|
||||||
|
# returns an FH to stdin and a PID.
|
||||||
|
sub wrap_rsync_fh (@) {
|
||||||
|
my @command = @_;
|
||||||
|
my ($fh, $pid);
|
||||||
|
|
||||||
|
if ($pid = open($fh, "|-")) {
|
||||||
|
# Parent
|
||||||
|
} elsif (defined $pid) {
|
||||||
|
# Child
|
||||||
|
# This redirection is necessary because rsync sends
|
||||||
|
# verbose output to STDOUT
|
||||||
|
open(STDOUT, ">&STDERR")
|
||||||
|
or die "Could not redirect STDOUT to STDERR\n";
|
||||||
|
exec(@command);
|
||||||
|
die "Could not exec '@command': $!\n";
|
||||||
|
} else {
|
||||||
|
die "Could not fork: $!\n";
|
||||||
|
}
|
||||||
|
return($fh, $pid);
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
329
slack-dist/dist/slack
vendored
Normal file
329
slack-dist/dist/slack
vendored
Normal file
@ -0,0 +1,329 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack 180 2008-01-19 08:26:19Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
|
||||||
|
# This script is in charge of copying files from the (possibly remote)
|
||||||
|
# master directory to a local cache, using rsync
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
use File::Find;
|
||||||
|
use POSIX; # for strftime
|
||||||
|
|
||||||
|
use constant LIBEXEC_DIR => '/usr/lib/slack';
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
sub run_backend(@);
|
||||||
|
sub run_conditional_backend($@);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
# Arguments to pass to each backends (initialized to a hash of empty arrays)
|
||||||
|
my %backend_flags = ( map { $_ => [] }
|
||||||
|
qw(getroles sync stage preview preinstall fixfiles installfiles postinstall)
|
||||||
|
);
|
||||||
|
|
||||||
|
my @roles;
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] [<role>...]");
|
||||||
|
$usage .= <<EOF;
|
||||||
|
|
||||||
|
--preview MODE
|
||||||
|
Do a diff of scripts and files before running them.
|
||||||
|
MODE can be one of 'simple' or 'prompt'.
|
||||||
|
|
||||||
|
--no-files
|
||||||
|
Don't install any files in ROOT, but tell rsync to print what
|
||||||
|
it would do.
|
||||||
|
|
||||||
|
--no-scripts
|
||||||
|
Don't run scripts.
|
||||||
|
|
||||||
|
--no-sync
|
||||||
|
Skip the slack-sync step. (useful if you're pushing stuff into
|
||||||
|
the CACHE outside of slack)
|
||||||
|
|
||||||
|
--role-list
|
||||||
|
Role list for slack-getroles
|
||||||
|
|
||||||
|
--libexec-dir DIR
|
||||||
|
Look for backend scripts in this directory.
|
||||||
|
|
||||||
|
--diff PROG
|
||||||
|
Use this diff program for previews
|
||||||
|
|
||||||
|
--sleep TIME
|
||||||
|
Randomly sleep between 1 and TIME seconds before starting
|
||||||
|
operations
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Options
|
||||||
|
my %opt = ();
|
||||||
|
# So we can distinguish stuff on the command line from config file stuff
|
||||||
|
my %command_line_opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
command_line_options => [
|
||||||
|
'preview=s',
|
||||||
|
'role-list=s',
|
||||||
|
'no-scripts|noscripts',
|
||||||
|
'no-files|nofiles',
|
||||||
|
'no-sync|nosync',
|
||||||
|
'libexec-dir=s',
|
||||||
|
'diff=s',
|
||||||
|
'sleep=i',
|
||||||
|
],
|
||||||
|
required_options => [ qw(source cache stage root) ],
|
||||||
|
command_line_hash => \%command_line_opt,
|
||||||
|
usage => $usage,
|
||||||
|
);
|
||||||
|
|
||||||
|
# Special options
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
$opt{'no-scripts'} = 1;
|
||||||
|
$opt{'no-files'} = 1;
|
||||||
|
}
|
||||||
|
if ($opt{'no-scripts'}) {
|
||||||
|
for my $action (qw(fixfiles preinstall postinstall)) {
|
||||||
|
push @{$backend_flags{$action}},
|
||||||
|
'--dry-run';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($opt{'no-files'}) {
|
||||||
|
push @{$backend_flags{installfiles}},
|
||||||
|
'--dry-run';
|
||||||
|
}
|
||||||
|
# propagate verbosity - 1 to all backends
|
||||||
|
if (defined $command_line_opt{'verbose'} and
|
||||||
|
$command_line_opt{'verbose'} > 1) {
|
||||||
|
for my $action (keys %backend_flags) {
|
||||||
|
push @{$backend_flags{$action}},
|
||||||
|
('--verbose') x ($command_line_opt{'verbose'} - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# propagate these flags to all the backends
|
||||||
|
for my $option (qw(config root cache stage source hostname rsh)) {
|
||||||
|
if ($command_line_opt{$option}) {
|
||||||
|
for my $action (keys %backend_flags) {
|
||||||
|
push @{$backend_flags{$action}},
|
||||||
|
"--$option=$command_line_opt{$option}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# getroles also can take 'role-list'
|
||||||
|
if ($command_line_opt{'role-list'}) {
|
||||||
|
push @{$backend_flags{'getroles'}},
|
||||||
|
"--role-list=$command_line_opt{'role-list'}";
|
||||||
|
}
|
||||||
|
|
||||||
|
# The libexec dir defaults to this if it wasn't specified
|
||||||
|
# on the command line or in a config file.
|
||||||
|
if (not defined $opt{'libexec-dir'}) {
|
||||||
|
$opt{'libexec-dir'} = LIBEXEC_DIR;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pass diff option along to slack-rolediff
|
||||||
|
if ($opt{'diff'}) {
|
||||||
|
push @{$backend_flags{preview}},
|
||||||
|
"--diff=$opt{'diff'}";
|
||||||
|
}
|
||||||
|
|
||||||
|
# Preview takes an optional argument. If no argument is given,
|
||||||
|
# it gets "" from getopt.
|
||||||
|
if (defined $opt{'preview'}) {
|
||||||
|
if (not grep /^$opt{'preview'}$/, qw(simple prompt)) {
|
||||||
|
die "Unknown preview mode '$opt{'preview'}'!";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# The backup option defaults to on if it wasn't specified
|
||||||
|
# on the command line or in a config file
|
||||||
|
if (not defined $opt{backup}) {
|
||||||
|
$opt{backup} = 1;
|
||||||
|
}
|
||||||
|
# Figure out a place to put backups
|
||||||
|
if ($opt{backup} and $opt{'backup-dir'}) {
|
||||||
|
push @{$backend_flags{installfiles}},
|
||||||
|
'--backup',
|
||||||
|
'--backup-dir='.
|
||||||
|
$opt{'backup-dir'}.
|
||||||
|
"/".
|
||||||
|
strftime('%F-%T', localtime(time))
|
||||||
|
;
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Random sleep, helpful when called from cron.
|
||||||
|
if ($opt{sleep}) {
|
||||||
|
my $secs = int(rand($opt{sleep})) + 1;
|
||||||
|
$opt{verbose} and print STDERR "$PROG: sleep $secs\n";
|
||||||
|
sleep($secs);
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get a list of roles to install from slack-getroles {{{
|
||||||
|
if (not @ARGV) {
|
||||||
|
my @command = ($opt{'libexec-dir'}.'/slack-getroles',
|
||||||
|
@{$backend_flags{'getroles'}});
|
||||||
|
$opt{verbose} and print STDERR "$PROG: getroles\n";
|
||||||
|
($opt{verbose} > 2) and print STDERR "$PROG: Calling '@command' to get a list of roles for this host.\n";
|
||||||
|
my ($roles_pid, $roles_fh);
|
||||||
|
if ($roles_pid = open($roles_fh, "-|")) {
|
||||||
|
# Parent
|
||||||
|
} elsif (defined $roles_pid) {
|
||||||
|
# Child
|
||||||
|
exec(@command);
|
||||||
|
die "Could not exec '@command': $!\n";
|
||||||
|
} else {
|
||||||
|
die "Could not fork to run '@command': $!\n";
|
||||||
|
}
|
||||||
|
@roles = split(/\s+/, join(" ", <$roles_fh>));
|
||||||
|
unless (close($roles_fh)) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
@roles = @ARGV;
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Check role name syntax {{{
|
||||||
|
for my $role (@roles) {
|
||||||
|
# Roles MUST begin with a letter. All else is reserved.
|
||||||
|
if ($role !~ m/^[a-zA-Z]/) {
|
||||||
|
die "Role '$role' does not begin with a letter!";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
$opt{verbose} and print STDERR "$PROG: installing roles: @roles\n";
|
||||||
|
|
||||||
|
unless ($opt{'no-sync'}) {
|
||||||
|
# sync all the roles down at once
|
||||||
|
$opt{verbose} and print STDERR "$PROG: sync @roles\n";
|
||||||
|
run_backend('slack-sync',
|
||||||
|
@{$backend_flags{sync}}, @roles);
|
||||||
|
}
|
||||||
|
|
||||||
|
ROLE: for my $role (@roles) {
|
||||||
|
# stage
|
||||||
|
$opt{verbose} and print STDERR "$PROG: stage files $role\n";
|
||||||
|
run_backend('slack-stage',
|
||||||
|
@{$backend_flags{stage}}, '--subdir=files', $role);
|
||||||
|
|
||||||
|
if ($opt{preview}) {
|
||||||
|
if ($opt{preview} eq 'simple') {
|
||||||
|
$opt{verbose} and print STDERR "$PROG: preview $role\n";
|
||||||
|
# Here, we run the backend in no-prompt mode.
|
||||||
|
run_conditional_backend(0, 'slack-rolediff',
|
||||||
|
@{$backend_flags{preview}}, $role);
|
||||||
|
# ...and we skip further action in the ROLE after showing the diff.
|
||||||
|
next ROLE;
|
||||||
|
} elsif ($opt{preview} eq 'prompt') {
|
||||||
|
$opt{verbose} and print STDERR "$PROG: preview scripts $role\n";
|
||||||
|
# Here, we want to prompt and just do the scripts, since
|
||||||
|
# we need to run preinstall and fixfiles before doing the files.
|
||||||
|
run_conditional_backend(1, 'slack-rolediff',
|
||||||
|
@{$backend_flags{preview}}, '--subdir=scripts', $role);
|
||||||
|
} else {
|
||||||
|
# Should get caught in option processing, above
|
||||||
|
die "Unknown preview mode!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$opt{verbose} and print STDERR "$PROG: stage scripts $role\n";
|
||||||
|
run_backend('slack-stage',
|
||||||
|
@{$backend_flags{stage}}, '--subdir=scripts', $role);
|
||||||
|
|
||||||
|
# preinstall
|
||||||
|
$opt{verbose} and print STDERR "$PROG: preinstall $role\n";
|
||||||
|
run_backend('slack-runscript',
|
||||||
|
@{$backend_flags{preinstall}}, 'preinstall', $role);
|
||||||
|
|
||||||
|
# fixfiles
|
||||||
|
$opt{verbose} and print STDERR "$PROG: fixfiles $role\n";
|
||||||
|
run_backend('slack-runscript',
|
||||||
|
@{$backend_flags{fixfiles}}, 'fixfiles', $role);
|
||||||
|
|
||||||
|
# preview files
|
||||||
|
if ($opt{preview} and $opt{preview} eq 'prompt') {
|
||||||
|
$opt{verbose} and print STDERR "$PROG: preview files $role\n";
|
||||||
|
run_conditional_backend(1, 'slack-rolediff',
|
||||||
|
@{$backend_flags{preview}}, '--subdir=files', $role);
|
||||||
|
}
|
||||||
|
|
||||||
|
# installfiles
|
||||||
|
$opt{verbose} and print STDERR "$PROG: install $role\n";
|
||||||
|
run_backend('slack-installfiles',
|
||||||
|
@{$backend_flags{installfiles}}, $role);
|
||||||
|
|
||||||
|
# postinstall
|
||||||
|
$opt{verbose} and print STDERR "$PROG: postinstall $role\n";
|
||||||
|
run_backend('slack-runscript',
|
||||||
|
@{$backend_flags{postinstall}}, 'postinstall', $role);
|
||||||
|
}
|
||||||
|
exit 0;
|
||||||
|
|
||||||
|
sub run_backend (@) {
|
||||||
|
my ($backend, @args) = @_;
|
||||||
|
# If we weren't given an explicit path, prepend the libexec dir
|
||||||
|
unless ($backend =~ m#^/#) {
|
||||||
|
$backend = $opt{'libexec-dir'} . '/' . $backend;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Assemble our command line
|
||||||
|
my (@command) = ($backend, @args);
|
||||||
|
($opt{verbose} > 2) and print STDERR "$PROG: Calling '@command'\n";
|
||||||
|
unless (system(@command) == 0) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sub run_conditional_backend ($@) {
|
||||||
|
my ($prompt, $backend, @args) = @_;
|
||||||
|
# If we weren't given an explicit path, prepend the libexec dir
|
||||||
|
unless ($backend =~ m#^/#) {
|
||||||
|
$backend = $opt{'libexec-dir'} . '/' . $backend;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Assemble our command line
|
||||||
|
my (@command) = ($backend, @args);
|
||||||
|
($opt{verbose} > 2) and print STDERR "$PROG: Calling '@command'\n";
|
||||||
|
unless (system(@command) == 0) {
|
||||||
|
my $exit = Slack::get_system_exit(@command);
|
||||||
|
|
||||||
|
if ($exit == 1) {
|
||||||
|
# exit 1 means a difference found or something normal that requires
|
||||||
|
# a prompt before continuing.
|
||||||
|
if ($prompt) {
|
||||||
|
exit 1 unless Slack::prompt("Continue? [yN] ") eq 'y';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
# any other non-successful exit is a serious error.
|
||||||
|
die "'@command' exited $exit";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
514
slack-dist/dist/slack-diff
vendored
Normal file
514
slack-dist/dist/slack-diff
vendored
Normal file
@ -0,0 +1,514 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-diff 122 2006-09-27 07:34:32Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2006 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is a wrapper for diff that gives output about special files
|
||||||
|
# and file modes. (diff can only compare regular files)
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use Errno;
|
||||||
|
use File::stat;
|
||||||
|
use File::Basename;
|
||||||
|
use File::Find;
|
||||||
|
use Getopt::Long;
|
||||||
|
use POSIX qw(SIGPIPE strftime);
|
||||||
|
use Fcntl qw(:mode); # provides things like S_IFMT that POSIX does not
|
||||||
|
|
||||||
|
|
||||||
|
my $VERSION = '0.1';
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
my @diff; # diff program to use
|
||||||
|
my $exit = 0; # our exit code
|
||||||
|
|
||||||
|
sub compare ($$);
|
||||||
|
sub recursive_compare ($$);
|
||||||
|
sub filetype_to_string ($;$);
|
||||||
|
sub compare_files ($$);
|
||||||
|
sub diff ($$);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Autoflush on STDOUT
|
||||||
|
$|=1;
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
# Default options
|
||||||
|
my %opt = (
|
||||||
|
fakediff => 1,
|
||||||
|
perms => 1,
|
||||||
|
'new-file' => 1,
|
||||||
|
diff => 'diff',
|
||||||
|
);
|
||||||
|
|
||||||
|
# Config and option parsing
|
||||||
|
my $usage = <<EOF;
|
||||||
|
Usage: $PROG [options] <file1> <file2>
|
||||||
|
$PROG -r <dir1> <dir2>
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-u, -U NUM, --unified=NUM
|
||||||
|
Tell diff to use unified output format.
|
||||||
|
--diff PROG
|
||||||
|
Use this program for diffing, instead of "$opt{diff}"
|
||||||
|
--fakediff
|
||||||
|
Make a fake diff for file modes and other things that are not file
|
||||||
|
contents. Default is on, can be disabled with --nofakediff.
|
||||||
|
--perms
|
||||||
|
Care about owner, group, and permissions when doing fakediff.
|
||||||
|
Default is on, can be disabled with --noperms.
|
||||||
|
-r, --recursive
|
||||||
|
Recursively compare directories.
|
||||||
|
-N, --new-file
|
||||||
|
Treat missing files as empty. Default is on, can be disabled with
|
||||||
|
--nonew-file.
|
||||||
|
--unidirectional-new-file
|
||||||
|
Treat only missing files in the first directory as empty.
|
||||||
|
--from-file
|
||||||
|
Treat arguments as a list of files from which to read filenames to
|
||||||
|
compare, two lines at a time.
|
||||||
|
-0, --null
|
||||||
|
Use NULLs instead of newlines as the separator in --from-file mode
|
||||||
|
--devnullhack
|
||||||
|
You have a version of diff that can't deal with -N when not in
|
||||||
|
recursive mode, so we need to feed it /dev/null instead of the
|
||||||
|
missing file. Default is on, can be disabled with --nodevnullhack.
|
||||||
|
--version
|
||||||
|
Output version info
|
||||||
|
--help
|
||||||
|
Output this help text
|
||||||
|
|
||||||
|
Exit codes:
|
||||||
|
0 Found no differences
|
||||||
|
1 Found a difference
|
||||||
|
2 Had a serious error
|
||||||
|
3 Found a difference and had a serious error
|
||||||
|
EOF
|
||||||
|
|
||||||
|
{
|
||||||
|
Getopt::Long::Configure ("bundling");
|
||||||
|
GetOptions(\%opt,
|
||||||
|
'help|h|?',
|
||||||
|
'version',
|
||||||
|
'null|0',
|
||||||
|
'devnullhack',
|
||||||
|
'new-file|N',
|
||||||
|
'u',
|
||||||
|
'unified|U=i',
|
||||||
|
'recursive|r',
|
||||||
|
'from-file',
|
||||||
|
'unidirectional-new-file',
|
||||||
|
'fakediff!',
|
||||||
|
'perms!',
|
||||||
|
'diff=s',
|
||||||
|
) or die $usage;
|
||||||
|
if ($opt{help}) {
|
||||||
|
print $usage;
|
||||||
|
exit 0;
|
||||||
|
}
|
||||||
|
if ($opt{version}) {
|
||||||
|
print "$PROG version $VERSION\n";
|
||||||
|
exit 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($opt{diff}) {
|
||||||
|
# We split on spaces here to be useful -- so that people can give
|
||||||
|
# their diff options.
|
||||||
|
@diff = split(/\s+/, $opt{diff});
|
||||||
|
} else {
|
||||||
|
die "$PROG: No diff program!\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($opt{'u'}) {
|
||||||
|
push @diff, '-u';
|
||||||
|
} elsif ($opt{'unified'}) {
|
||||||
|
$opt{'u'} = 1; # We use this value later
|
||||||
|
push @diff, "--unified=$opt{'unified'}";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (not $opt{'devnullhack'}) {
|
||||||
|
push @diff, '-N';
|
||||||
|
}
|
||||||
|
|
||||||
|
# usually, sigpipe would be someone quitting their pager, so don't sweat it
|
||||||
|
$SIG{PIPE} = sub { exit $exit };
|
||||||
|
|
||||||
|
if ($opt{'from-file'}) {
|
||||||
|
local $/ = "\0" if $opt{'null'};
|
||||||
|
while (my $old = <>) {
|
||||||
|
my $new = <>;
|
||||||
|
die "Uneven number of lines in --from-file mode!\n"
|
||||||
|
if not defined $new;
|
||||||
|
chomp($old);
|
||||||
|
chomp($new);
|
||||||
|
$exit |= compare($old, $new);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
die $usage unless $#ARGV == 1;
|
||||||
|
$exit |= compare($ARGV[0], $ARGV[1]);
|
||||||
|
}
|
||||||
|
exit $exit;
|
||||||
|
|
||||||
|
##
|
||||||
|
# Subroutines
|
||||||
|
|
||||||
|
sub compare ($$) {
|
||||||
|
my ($old, $new) = @_;
|
||||||
|
|
||||||
|
if ($opt{recursive}) {
|
||||||
|
return recursive_compare($old, $new);
|
||||||
|
} else {
|
||||||
|
return compare_files($old, $new);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# compare two directories. We do this by walking down the *new*
|
||||||
|
# directory, and comparing everything that's there to the stuff in
|
||||||
|
# the old directory
|
||||||
|
sub recursive_compare ($$) {
|
||||||
|
my ($olddir, $newdir) = @_;
|
||||||
|
my ($retval, $basere, $wanted);
|
||||||
|
my (%seen);
|
||||||
|
|
||||||
|
$retval = 0;
|
||||||
|
|
||||||
|
if (-d $newdir) {
|
||||||
|
$basere = qr(^$newdir);
|
||||||
|
$wanted = sub {
|
||||||
|
my ($newfile) = $_;
|
||||||
|
my $oldfile = $newfile;
|
||||||
|
|
||||||
|
$oldfile =~ s#$basere#$olddir#;
|
||||||
|
$seen{$oldfile} = 1;
|
||||||
|
$retval |= compare_files($oldfile, $newfile);
|
||||||
|
};
|
||||||
|
|
||||||
|
eval { find({ wanted => $wanted , no_chdir => 1}, $newdir) };
|
||||||
|
if ($@) {
|
||||||
|
warn "$PROG: error during find: $@\n";
|
||||||
|
$retval |= 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $retval
|
||||||
|
if $opt{'unidirectional-new-file'};
|
||||||
|
|
||||||
|
# If we're not unidirectional, we want to go through the old directory
|
||||||
|
# and diff any files we didn't see in the newdir.
|
||||||
|
if (-d $olddir) {
|
||||||
|
$basere = qr(^$olddir);
|
||||||
|
$wanted = sub {
|
||||||
|
my ($oldfile) = $_;
|
||||||
|
my $newfile;
|
||||||
|
|
||||||
|
return if $seen{$oldfile};
|
||||||
|
$newfile = $oldfile;
|
||||||
|
|
||||||
|
$newfile =~ s#$basere#$newdir#;
|
||||||
|
$retval |= compare_files($oldfile, $newfile);
|
||||||
|
};
|
||||||
|
|
||||||
|
eval { find({ wanted => $wanted , no_chdir => 1}, $olddir) };
|
||||||
|
if ($@) {
|
||||||
|
warn "$PROG: error during find: $@\n";
|
||||||
|
$retval |= 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
# filetype_to_string(mode)
|
||||||
|
# filetype_to_string(mode, plural)
|
||||||
|
#
|
||||||
|
# Takes a mode returned from stat(), returns a noune describing the filetype,
|
||||||
|
# e.g. "directory", "symlink".
|
||||||
|
# If the "plural" argument is provided and true, returns the plural form of
|
||||||
|
# the noun, e.g. "directories", "symlinks".
|
||||||
|
sub filetype_to_string ($;$) {
|
||||||
|
my ($mode, $plural) = @_;
|
||||||
|
|
||||||
|
if (S_ISREG($mode)) {
|
||||||
|
return "regular file".($plural ? "s" : "");
|
||||||
|
} elsif (S_ISDIR($mode)) {
|
||||||
|
return "director".($plural ? "ies" : "y");
|
||||||
|
} elsif (S_ISLNK($mode)) {
|
||||||
|
return "symlink".($plural ? "s" : "");
|
||||||
|
} elsif (S_ISBLK($mode)) {
|
||||||
|
return "block device".($plural ? "s" : "");
|
||||||
|
} elsif (S_ISCHR($mode)) {
|
||||||
|
return "character device".($plural ? "s" : "");
|
||||||
|
} elsif (S_ISFIFO($mode)) {
|
||||||
|
return "fifo".($plural ? "s" : "");
|
||||||
|
} elsif (S_ISSOCK($mode)) {
|
||||||
|
return "socket".($plural ? "s" : "");
|
||||||
|
} else {
|
||||||
|
return "unknown filetype".($plural ? "s" : "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# compare_files(oldfile, newfile)
|
||||||
|
# This is the actual diffing routine. It's quite long because we need to
|
||||||
|
# deal with all sorts of special cases. It will print to STDOUT a
|
||||||
|
# description of the differences between the two files. For regular files,
|
||||||
|
# diff(1) will be run to show the differences.
|
||||||
|
#
|
||||||
|
# return codes:
|
||||||
|
# 1 found a difference
|
||||||
|
# 2 had an error
|
||||||
|
# 3 found a difference and had an error
|
||||||
|
sub compare_files ($$) {
|
||||||
|
my ($oldname, $newname) = @_;
|
||||||
|
my ($old, $new); # stat buffers
|
||||||
|
my $return = 0;
|
||||||
|
|
||||||
|
# Get rid of unsightly double slashes
|
||||||
|
$oldname =~ s#//#/#g;
|
||||||
|
$newname =~ s#//#/#g;
|
||||||
|
|
||||||
|
eval { $old = lstat($oldname); };
|
||||||
|
if (not defined $old and not $!{ENOENT}) {
|
||||||
|
warn "$PROG: Could not stat $oldname: $!\n";
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
eval { $new = lstat($newname); };
|
||||||
|
if (not defined $new and not $!{ENOENT}) {
|
||||||
|
warn "$PROG: Could not stat $newname: $!\n";
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
# At this point, $old or $new should only be undefined if the
|
||||||
|
# file does not exist.
|
||||||
|
|
||||||
|
if (defined $old and defined $new) {
|
||||||
|
if (S_IFMT($old->mode) != S_IFMT($new->mode)) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('filetype',
|
||||||
|
$oldname => filetype_to_string($old->mode),
|
||||||
|
$newname => filetype_to_string($new->mode),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "File types differ between ".
|
||||||
|
filetype_to_string($old->mode)." $oldname and ".
|
||||||
|
filetype_to_string($new->mode)." $newname\n";
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if ($old->nlink != $new->nlink) {
|
||||||
|
# In recursive mode, we don't care about link counts in directories,
|
||||||
|
# as we'll pick that up with what files do and don't exist.
|
||||||
|
unless ($opt{recursive} and S_ISDIR($old->mode)) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('nlink',
|
||||||
|
$oldname => $old->nlink,
|
||||||
|
$newname => $new->nlink,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Link counts differ between ".
|
||||||
|
filetype_to_string($old->mode, 1).
|
||||||
|
" $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($old->uid != $new->uid and $opt{perms}) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('uid',
|
||||||
|
$oldname => $old->uid,
|
||||||
|
$newname => $new->uid,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Owner differs between ".
|
||||||
|
filetype_to_string($old->mode, 1).
|
||||||
|
" $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
if ($old->gid != $new->gid and $opt{perms}) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('gid',
|
||||||
|
$oldname => $old->gid,
|
||||||
|
$newname => $new->gid,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Group differs between ".
|
||||||
|
filetype_to_string($old->mode, 1).
|
||||||
|
" $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
if (S_IMODE($old->mode) != S_IMODE($new->mode) and $opt{perms}) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('mode',
|
||||||
|
$oldname => sprintf('%04o', S_IMODE($old->mode)),
|
||||||
|
$newname => sprintf('%04o', S_IMODE($new->mode)),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Modes differ between ".
|
||||||
|
filetype_to_string($old->mode, 1).
|
||||||
|
" $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
# We don't want to compare anything more about sockets, fifos, or
|
||||||
|
# directories, once we've checked the permissions and link counts
|
||||||
|
if (S_ISSOCK($old->mode) or
|
||||||
|
S_ISFIFO($old->mode) or
|
||||||
|
S_ISDIR($old->mode)) {
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Check device file devs, and that's it for them
|
||||||
|
if (S_ISCHR($old->mode) or
|
||||||
|
S_ISBLK($old->mode)) {
|
||||||
|
if ($old->rdev != $new->rdev) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('rdev',
|
||||||
|
$oldname => $old->rdev,
|
||||||
|
$newname => $new->rdev,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Device numbers differ between ".
|
||||||
|
filetype_to_string($old->mode, 1).
|
||||||
|
" $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Compare the targets of symlinks
|
||||||
|
if (S_ISLNK($old->mode)) {
|
||||||
|
my $oldtarget = readlink $oldname
|
||||||
|
or (warn("$PROG: Could not readlink($oldname): $!\n"),
|
||||||
|
return $return | 2);
|
||||||
|
my $newtarget = readlink $newname
|
||||||
|
or (warn("$PROG: Could not readlink($newname): $!\n"),
|
||||||
|
return $return | 2);
|
||||||
|
if ($oldtarget ne $newtarget) {
|
||||||
|
if ($opt{fakediff}) {
|
||||||
|
fakediff('target',
|
||||||
|
$oldname => $oldtarget,
|
||||||
|
$newname => $newtarget,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
print "Symlink targets differ between $oldname and $newname\n";
|
||||||
|
}
|
||||||
|
$return = 1;
|
||||||
|
}
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (not S_ISREG($old->mode)) {
|
||||||
|
warn "$PROG: Don't know what to do with file mode $old->mode!\n";
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
} elsif (not defined $old and not defined $new) {
|
||||||
|
print "Neither $oldname nor $newname exists\n";
|
||||||
|
return $return;
|
||||||
|
} elsif (not defined $old) {
|
||||||
|
if (not S_ISREG($new->mode) or not $opt{'new-file'}) {
|
||||||
|
print "Only in ".dirname($newname).": ".
|
||||||
|
filetype_to_string($new->mode)." ".basename($newname)."\n";
|
||||||
|
return 1;
|
||||||
|
} elsif ($opt{'devnullhack'}) {
|
||||||
|
$oldname = '/dev/null';
|
||||||
|
}
|
||||||
|
} elsif (not defined $new) {
|
||||||
|
if (not S_ISREG($old->mode) or not $opt{'new-file'}) {
|
||||||
|
print "Only in ".dirname($oldname).": ".
|
||||||
|
filetype_to_string($old->mode)." ".basename($oldname)."\n";
|
||||||
|
return 1;
|
||||||
|
} elsif ($opt{'devnullhack'}) {
|
||||||
|
$newname = '/dev/null';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# They are regular files! We can actually run diff!
|
||||||
|
return diff($oldname, $newname) | $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub diff ($$) {
|
||||||
|
my ($oldname, $newname) = @_;
|
||||||
|
my @command = (@diff, $oldname, $newname);
|
||||||
|
my $status;
|
||||||
|
|
||||||
|
# If we're not specifying unified diff, we need to print a header
|
||||||
|
# to indicate what's being diffed. (I'm not sure if this actually would
|
||||||
|
# work for patch, but it does tell our user what's going on).
|
||||||
|
# FIXME: We only need to specify this if the files are different
|
||||||
|
print "@command\n"
|
||||||
|
if not $opt{u};
|
||||||
|
|
||||||
|
{
|
||||||
|
# There is a bug in perl with use warnings FATAL => qw(all)
|
||||||
|
# that will cause the child process from system() to stick
|
||||||
|
# around if there is a warning generated.
|
||||||
|
# Shut off warnings -- we'll catch the error below.
|
||||||
|
no warnings;
|
||||||
|
$status = system(@command);
|
||||||
|
}
|
||||||
|
return 0 if ($status == 0);
|
||||||
|
if ($? == -1) {
|
||||||
|
die "$PROG: failed to execute '@command': $!\n";
|
||||||
|
}
|
||||||
|
if ($? & 128) {
|
||||||
|
die "$PROG: '@command' dumped core\n";
|
||||||
|
}
|
||||||
|
if (my $sig = $? & 127) {
|
||||||
|
die "$PROG: '@command' caught sig $sig\n"
|
||||||
|
unless ($sig == SIGPIPE);
|
||||||
|
}
|
||||||
|
if (my $exit = $? >> 8) {
|
||||||
|
if ($exit == 1) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
die "$PROG: '@command' returned $exit\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sub fakediff ($$) {
|
||||||
|
my ($type, $oldname, $oldvalue, $newname, $newvalue) = @_;
|
||||||
|
|
||||||
|
return unless $opt{fakediff};
|
||||||
|
my $time = strftime('%F %T.000000000 %z', localtime(0));
|
||||||
|
|
||||||
|
# We add a suffix onto the filenames to show we're not actually looking
|
||||||
|
# at file contents. There's no good way to indicate this that's compatible
|
||||||
|
# with patch, and this is simple enough.
|
||||||
|
$oldname .= '#~~' . $type;
|
||||||
|
$newname .= '#~~' . $type;
|
||||||
|
|
||||||
|
if ($opt{u}) {
|
||||||
|
# fake up a unified diff
|
||||||
|
print <<EOF;
|
||||||
|
--- $oldname\t$time
|
||||||
|
+++ $newname\t$time
|
||||||
|
@@ -1 +1 @@
|
||||||
|
-$oldvalue
|
||||||
|
+$newvalue
|
||||||
|
EOF
|
||||||
|
} else {
|
||||||
|
print <<EOF;
|
||||||
|
diff $oldname $newname
|
||||||
|
1c1
|
||||||
|
< $oldvalue
|
||||||
|
---
|
||||||
|
> $newvalue
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
}
|
161
slack-dist/dist/slack-getroles
vendored
Normal file
161
slack-dist/dist/slack-getroles
vendored
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-getroles 180 2008-01-19 08:26:19Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
|
||||||
|
# This script is in charge of copying files from the (possibly remote)
|
||||||
|
# master directory to a local cache, using rsync
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
my @rsync = ('rsync',
|
||||||
|
'--links',
|
||||||
|
'--times',
|
||||||
|
);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
sub sync_list ();
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options]");
|
||||||
|
$usage .= <<EOF;
|
||||||
|
|
||||||
|
--role-list
|
||||||
|
Role list location (can be relative to SOURCE)
|
||||||
|
|
||||||
|
--remote-role-list
|
||||||
|
Role list is remote and should be copied down with rsync
|
||||||
|
(implied by certain forms of role list or SOURCE)
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
command_line_options => [
|
||||||
|
'role-list=s',
|
||||||
|
'remote-role-list',
|
||||||
|
],
|
||||||
|
required_options => [ qw(role-list hostname) ],
|
||||||
|
usage => $usage,
|
||||||
|
);
|
||||||
|
|
||||||
|
# Prepare for backups
|
||||||
|
if ($opt{backup} and $opt{'backup-dir'}) {
|
||||||
|
# Make sure backup directory exists
|
||||||
|
unless (-d $opt{'backup-dir'}) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "Creating backup directory '$opt{'backup-dir'}'\n";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval { mkpath($opt{'backup-dir'}); };
|
||||||
|
die "Could not mkpath backup dir '$opt{'backup-dir'}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
push(@rsync, "--backup", "--backup-dir=$opt{'backup-dir'}");
|
||||||
|
}
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
push @rsync, '--dry-run';
|
||||||
|
}
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'verbose'} > 1) {
|
||||||
|
push @rsync, '--verbose';
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# See if role-list is actually relative to source, and pre-pend source
|
||||||
|
# if need be.
|
||||||
|
unless ($opt{'role-list'} =~ m#^/# or
|
||||||
|
$opt{'role-list'} =~ m#^\./# or
|
||||||
|
$opt{'role-list'} =~ m#^[\w@\.-]+:#) {
|
||||||
|
if (not defined $opt{source}) {
|
||||||
|
die "Relative path to role-list given, but source not defined!\n\n$usage\n";
|
||||||
|
}
|
||||||
|
$opt{'role-list'} = $opt{source} . '/' . $opt{'role-list'};
|
||||||
|
}
|
||||||
|
|
||||||
|
# auto-detect remote role list
|
||||||
|
if ($opt{'role-list'} =~ m#^[\w@\.-]+:#) {
|
||||||
|
$opt{'remote-role-list'} = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Copy a remote list locally
|
||||||
|
if ($opt{'remote-role-list'}) {
|
||||||
|
# We need a cache directory if the role list is not local
|
||||||
|
if (not defined $opt{cache}) {
|
||||||
|
die "Remote path to role-list given, but cache not defined!\n\n$usage\n";
|
||||||
|
}
|
||||||
|
# Look at source type, and add options if necessary
|
||||||
|
if ($opt{'rsh'} or $opt{'role-list'} =~ m/^[\w@\.-]+::/) {
|
||||||
|
# This is tunnelled rsync, and so needs an extra option
|
||||||
|
if ($opt{'rsh'}) {
|
||||||
|
push @rsync, '-e', $opt{'rsh'};
|
||||||
|
} else {
|
||||||
|
push @rsync, '-e', 'ssh';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sync_list();
|
||||||
|
}
|
||||||
|
|
||||||
|
# Read in the roles list
|
||||||
|
my @roles = ();
|
||||||
|
my $host_found = 0;
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Reading '$opt{'role-list'}'\n";
|
||||||
|
open(ROLES, "<", $opt{'role-list'})
|
||||||
|
or die "Could not open '$opt{'role-list'}' for reading: $!\n";
|
||||||
|
while(<ROLES>) {
|
||||||
|
s/#.*//; # Strip comments
|
||||||
|
chomp;
|
||||||
|
if (s/^$opt{hostname}:\s*//) {
|
||||||
|
$host_found++;
|
||||||
|
push @roles, split();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
close(ROLES)
|
||||||
|
or die "Could not close '$opt{'role-list'}': $!\n";
|
||||||
|
if (not $host_found) {
|
||||||
|
die "Host '$opt{hostname}' not found in '$opt{'role-list'}'!\n";
|
||||||
|
}
|
||||||
|
print join("\n", @roles), "\n";
|
||||||
|
exit 0;
|
||||||
|
|
||||||
|
sub sync_list () {
|
||||||
|
my $source = $opt{'role-list'};
|
||||||
|
my $destination = $opt{cache} . "/_role_list";
|
||||||
|
unless (-d $opt{cache}) {
|
||||||
|
eval { mkpath($opt{cache}); };
|
||||||
|
die "Could not mkpath '$opt{cache}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
# All this to run an rsync command
|
||||||
|
my @command = (@rsync, $source, $destination);
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Calling '@command'\n";
|
||||||
|
Slack::wrap_rsync(@command);
|
||||||
|
$opt{'role-list'} = $destination;
|
||||||
|
}
|
||||||
|
|
149
slack-dist/dist/slack-installfiles
vendored
Normal file
149
slack-dist/dist/slack-installfiles
vendored
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-installfiles 180 2008-01-19 08:26:19Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is in charge of copying files from the local stage to the root
|
||||||
|
# of the local filesystem
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
my @rsync = ('rsync',
|
||||||
|
'--relative',
|
||||||
|
'--times',
|
||||||
|
'--perms',
|
||||||
|
'--group',
|
||||||
|
'--owner',
|
||||||
|
'--links',
|
||||||
|
'--devices',
|
||||||
|
'--sparse',
|
||||||
|
'--no-implied-dirs', # SO GOOD!
|
||||||
|
'--files-from=-',
|
||||||
|
'--from0',
|
||||||
|
);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
sub install_files ($);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <role> [<role>...]");
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
usage => $usage,
|
||||||
|
required_options => [ qw(root stage) ],
|
||||||
|
);
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
unless (-d $opt{root}) {
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval {
|
||||||
|
mkpath($opt{root});
|
||||||
|
# We have a tight umask, and a root of mode 0700 would be undesirable
|
||||||
|
# in most cases.
|
||||||
|
chmod(0755, $opt{root});
|
||||||
|
};
|
||||||
|
die "Could not mkpath destination directory '$opt{root}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
warn "WARNING[$PROG]: Created destination directory '".$opt{root}."'\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
# Prepare for backups
|
||||||
|
if ($opt{backup} and $opt{'backup-dir'}) {
|
||||||
|
# Make sure backup directory exists
|
||||||
|
unless (-d $opt{'backup-dir'}) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Creating backup directory '$opt{'backup-dir'}'\n";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval { mkpath($opt{'backup-dir'}); };
|
||||||
|
die "Could not mkpath backup dir '$opt{'backup-dir'}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
push(@rsync, "--backup", "--backup-dir=$opt{'backup-dir'}");
|
||||||
|
}
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
push @rsync, '--dry-run';
|
||||||
|
}
|
||||||
|
if ($opt{'verbose'} > 1) {
|
||||||
|
push @rsync, '--verbose';
|
||||||
|
}
|
||||||
|
|
||||||
|
# copy over the new files
|
||||||
|
for my $role (@ARGV) {
|
||||||
|
install_files($role);
|
||||||
|
}
|
||||||
|
exit 0;
|
||||||
|
|
||||||
|
# This subroutine takes care of actually installing the files for a role
|
||||||
|
sub install_files ($) {
|
||||||
|
my ($role) = @_;
|
||||||
|
# final / is important for rsync
|
||||||
|
my $source = $opt{stage} . "/roles/" . $role . "/files/";
|
||||||
|
my $destination = $opt{root} . "/";
|
||||||
|
my @command = (@rsync, $source, $destination);
|
||||||
|
|
||||||
|
if (not -d $source) {
|
||||||
|
($opt{verbose} > 0) and
|
||||||
|
print STDERR "$PROG: No files to install -- '$source' does not exist\n";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Try to give some sensible message here
|
||||||
|
if ($opt{verbose} > 0) {
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
print STDERR "$PROG: Dry-run syncing '$source' to '$destination'\n";
|
||||||
|
} else {
|
||||||
|
print STDERR "$PROG: Syncing '$source' to '$destination'\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
my ($fh) = Slack::wrap_rsync_fh(@command);
|
||||||
|
|
||||||
|
select((select($fh), $|=1)[0]); # Turn on autoflush
|
||||||
|
|
||||||
|
my $callback = sub {
|
||||||
|
my ($file) = @_;
|
||||||
|
($file =~ s#^$source##)
|
||||||
|
or die "sub failed: $source|$file";
|
||||||
|
print $fh "$file\0";
|
||||||
|
};
|
||||||
|
|
||||||
|
# This will print files to be synced to the $fh
|
||||||
|
Slack::find_files_to_install($source, $destination, $callback);
|
||||||
|
|
||||||
|
# Close fh, waitpid, and check return value
|
||||||
|
unless (close($fh)) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
146
slack-dist/dist/slack-rolediff
vendored
Normal file
146
slack-dist/dist/slack-rolediff
vendored
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-rolediff 125 2006-09-27 07:50:07Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2006 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script provides a preview of scripts or files about to be installed.
|
||||||
|
# Basically, it calls diff -- its smarts are in knowing where things are.
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
use File::Find;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
my @diff = ('slack-diff',
|
||||||
|
'-uN',
|
||||||
|
);
|
||||||
|
|
||||||
|
# directories to compare
|
||||||
|
my %subdir = (
|
||||||
|
files => 1,
|
||||||
|
scripts => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
sub diff ($$;@);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <role> [<role>...]");
|
||||||
|
$usage .= <<EOF;
|
||||||
|
|
||||||
|
--subdir DIR
|
||||||
|
Check this subdir only. Possible values for DIR are 'files' and
|
||||||
|
'scripts'.
|
||||||
|
|
||||||
|
--diff PROG
|
||||||
|
Use this program to do diffs. [@diff]
|
||||||
|
EOF
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
command_line_options => [
|
||||||
|
'subdir=s',
|
||||||
|
'diff=s',
|
||||||
|
],
|
||||||
|
usage => $usage,
|
||||||
|
required_options => [ qw(cache stage root) ],
|
||||||
|
);
|
||||||
|
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
# We only allow certain values for this option
|
||||||
|
if ($opt{subdir}) {
|
||||||
|
unless ($opt{subdir} eq 'files' or $opt{subdir} eq 'scripts') {
|
||||||
|
die "--subdir option must be 'files' or 'scripts'\n\n$usage";
|
||||||
|
}
|
||||||
|
# Only do this subdir
|
||||||
|
%subdir = ( $opt{subdir} => 1 );
|
||||||
|
}
|
||||||
|
|
||||||
|
# Let people override our diff. Split on spaces so they can pass args.
|
||||||
|
if ($opt{diff}) {
|
||||||
|
@diff = split(/\s+/, $opt{diff});
|
||||||
|
}
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
my $exit = 0;
|
||||||
|
# Do the diffs
|
||||||
|
for my $full_role (@ARGV) {
|
||||||
|
# Split the full role (e.g. google.foogle.woogle) into components
|
||||||
|
my @role = split(/\./, $full_role);
|
||||||
|
|
||||||
|
if ($subdir{scripts}) {
|
||||||
|
# Then we compare the cache vs the stage
|
||||||
|
my $old = $opt{stage} . "/roles/" . $full_role . "/scripts";
|
||||||
|
my $new = $opt{cache} . "/roles/" . $role[0] . "/scripts";
|
||||||
|
# For scripts, we don't care so much about mode and owner (since those are
|
||||||
|
# inherited in the CACHE from the SOURCE), so --noperms.
|
||||||
|
$exit |= diff($old, $new, '--noperms');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($subdir{files}) {
|
||||||
|
# Then we compare the stage vs the root
|
||||||
|
my $old = $opt{root};
|
||||||
|
my $new = $opt{stage} . "/roles/" . $full_role . "/files";
|
||||||
|
# For files, we don't care about files that exist in $old but not $new
|
||||||
|
$exit |= diff($old, $new, '--unidirectional-new-file');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exit $exit;
|
||||||
|
|
||||||
|
sub diff ($$;@) {
|
||||||
|
my ($old, $new, @options) = @_;
|
||||||
|
|
||||||
|
my @command = (@diff, @options);
|
||||||
|
|
||||||
|
# return if there's nothing to do
|
||||||
|
return 0 if (not -d $old and not -d $new);
|
||||||
|
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Previewing with '@command'\n";
|
||||||
|
|
||||||
|
my $return = 0;
|
||||||
|
my $callback = sub {
|
||||||
|
my ($new_file) = @_;
|
||||||
|
my $old_file = $new_file;
|
||||||
|
($old_file =~ s#^$new#$old#)
|
||||||
|
or die "sub failed: $new|$new_file";
|
||||||
|
if (system(@command, $old_file, $new_file) != 0) {
|
||||||
|
$return |= Slack::get_system_exit(@command);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
# We have to use this function, rather than recursive mode for slack-diff,
|
||||||
|
# because otherwise we'll print a bunch of bogus stuff about directories
|
||||||
|
# that exist in $ROOT and therefore aren't being synced.
|
||||||
|
Slack::find_files_to_install($new, $old, $callback);
|
||||||
|
|
||||||
|
return $return;
|
||||||
|
}
|
111
slack-dist/dist/slack-runscript
vendored
Normal file
111
slack-dist/dist/slack-runscript
vendored
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-runscript 118 2006-09-25 18:35:17Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2006 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is in charge of running scripts out of the local stage
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
use File::Find;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
# Export these options to the environment of the script
|
||||||
|
my @export_options = qw(root stage hostname verbose);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir('/')
|
||||||
|
or die "Could not chdir '/': $!";
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <action> <role> [<role>...]");
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
usage => $usage,
|
||||||
|
required_options => \@export_options,
|
||||||
|
);
|
||||||
|
|
||||||
|
my $action = shift || die "No script to run!\n\n$usage";
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Start with a clean environment
|
||||||
|
%ENV = (
|
||||||
|
PATH => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
||||||
|
);
|
||||||
|
# Export certain variables to the environment. These are guaranteed to
|
||||||
|
# be set because we require them in get_options above.
|
||||||
|
for my $option (@export_options) {
|
||||||
|
my $env_var = $option;
|
||||||
|
$env_var =~ tr/a-z-/A-Z_/;
|
||||||
|
$ENV{$env_var} = $opt{$option};
|
||||||
|
}
|
||||||
|
# We want to decrement the verbose value for the child if it's set.
|
||||||
|
$ENV{VERBOSE}-- if $ENV{VERBOSE};
|
||||||
|
|
||||||
|
# Run the script for each role given, if it exists and is executable
|
||||||
|
for my $role (@ARGV) {
|
||||||
|
my $script_to_run = "$opt{stage}/roles/$role/scripts/$action";
|
||||||
|
unless (-x $script_to_run) {
|
||||||
|
if (-e _) {
|
||||||
|
# A helpful warning
|
||||||
|
warn "WARNING[$PROG]: Skipping '$script_to_run' because it's not executable\n";
|
||||||
|
} elsif ($opt{verbose} > 0) {
|
||||||
|
print STDERR "$PROG: Skipping '$script_to_run' because it doesn't exist\n";
|
||||||
|
}
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
my $dir;
|
||||||
|
if ($action eq 'fixfiles') {
|
||||||
|
$dir = "$opt{stage}/roles/$role/files";
|
||||||
|
} else {
|
||||||
|
$dir = "$opt{stage}/roles/$role/scripts";
|
||||||
|
}
|
||||||
|
my @command = ($script_to_run , $role);
|
||||||
|
|
||||||
|
# It's OK to chdir even if we're not going to run the script.
|
||||||
|
# Might as well see if it works.
|
||||||
|
chdir($dir)
|
||||||
|
or die "Could not chdir '$dir': $!\n";
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
($opt{verbose} > 0)
|
||||||
|
and print STDERR "$PROG: Not calling '@command' in '$dir' ".
|
||||||
|
"because --dry-run specified.\n";
|
||||||
|
} else {
|
||||||
|
($opt{verbose} > 0)
|
||||||
|
and print STDERR "$PROG: Calling '@command' in '$dir'.\n";
|
||||||
|
unless (system("script /root/slackLog -a -f -c @command") == 0) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chdir('/')
|
||||||
|
or die "Could not chdir '/': $!\n"
|
||||||
|
}
|
||||||
|
exit 0;
|
||||||
|
|
111
slack-dist/dist/slack-runscript.orig
vendored
Normal file
111
slack-dist/dist/slack-runscript.orig
vendored
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-runscript 118 2006-09-25 18:35:17Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2006 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is in charge of running scripts out of the local stage
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
use File::Find;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
# Export these options to the environment of the script
|
||||||
|
my @export_options = qw(root stage hostname verbose);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir('/')
|
||||||
|
or die "Could not chdir '/': $!";
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <action> <role> [<role>...]");
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
usage => $usage,
|
||||||
|
required_options => \@export_options,
|
||||||
|
);
|
||||||
|
|
||||||
|
my $action = shift || die "No script to run!\n\n$usage";
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Start with a clean environment
|
||||||
|
%ENV = (
|
||||||
|
PATH => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
||||||
|
);
|
||||||
|
# Export certain variables to the environment. These are guaranteed to
|
||||||
|
# be set because we require them in get_options above.
|
||||||
|
for my $option (@export_options) {
|
||||||
|
my $env_var = $option;
|
||||||
|
$env_var =~ tr/a-z-/A-Z_/;
|
||||||
|
$ENV{$env_var} = $opt{$option};
|
||||||
|
}
|
||||||
|
# We want to decrement the verbose value for the child if it's set.
|
||||||
|
$ENV{VERBOSE}-- if $ENV{VERBOSE};
|
||||||
|
|
||||||
|
# Run the script for each role given, if it exists and is executable
|
||||||
|
for my $role (@ARGV) {
|
||||||
|
my $script_to_run = "$opt{stage}/roles/$role/scripts/$action";
|
||||||
|
unless (-x $script_to_run) {
|
||||||
|
if (-e _) {
|
||||||
|
# A helpful warning
|
||||||
|
warn "WARNING[$PROG]: Skipping '$script_to_run' because it's not executable\n";
|
||||||
|
} elsif ($opt{verbose} > 0) {
|
||||||
|
print STDERR "$PROG: Skipping '$script_to_run' because it doesn't exist\n";
|
||||||
|
}
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
my $dir;
|
||||||
|
if ($action eq 'fixfiles') {
|
||||||
|
$dir = "$opt{stage}/roles/$role/files";
|
||||||
|
} else {
|
||||||
|
$dir = "$opt{stage}/roles/$role/scripts";
|
||||||
|
}
|
||||||
|
my @command = ($script_to_run, $role);
|
||||||
|
|
||||||
|
# It's OK to chdir even if we're not going to run the script.
|
||||||
|
# Might as well see if it works.
|
||||||
|
chdir($dir)
|
||||||
|
or die "Could not chdir '$dir': $!\n";
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
($opt{verbose} > 0)
|
||||||
|
and print STDERR "$PROG: Not calling '@command' in '$dir' ".
|
||||||
|
"because --dry-run specified.\n";
|
||||||
|
} else {
|
||||||
|
($opt{verbose} > 0)
|
||||||
|
and print STDERR "$PROG: Calling '@command' in '$dir'.\n";
|
||||||
|
unless (system(@command) == 0) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chdir('/')
|
||||||
|
or die "Could not chdir '/': $!\n"
|
||||||
|
}
|
||||||
|
exit 0;
|
||||||
|
|
278
slack-dist/dist/slack-stage
vendored
Normal file
278
slack-dist/dist/slack-stage
vendored
Normal file
@ -0,0 +1,278 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-stage 180 2008-01-19 08:26:19Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is in charge of copying files from the local cache
|
||||||
|
# directory to the local stage, building a unified single tree onstage
|
||||||
|
# from the multiple trees that are the role + subroles in the cache
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
use File::Find;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
my @rsync = ('rsync',
|
||||||
|
'--recursive',
|
||||||
|
'--times',
|
||||||
|
'--ignore-times',
|
||||||
|
'--perms',
|
||||||
|
'--sparse',
|
||||||
|
);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
sub check_stage ();
|
||||||
|
sub sync_role ($$@);
|
||||||
|
sub apply_default_perms_to_role ($$);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <role> [<role>...]");
|
||||||
|
$usage .= <<EOF;
|
||||||
|
|
||||||
|
--subdir DIR
|
||||||
|
Sync this subdir only. Possible values for DIR are 'files' and
|
||||||
|
'scripts'.
|
||||||
|
EOF
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
command_line_options => [
|
||||||
|
'subdir=s',
|
||||||
|
],
|
||||||
|
usage => $usage,
|
||||||
|
required_options => [ qw(cache stage) ],
|
||||||
|
);
|
||||||
|
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
# We only allow certain values for this option
|
||||||
|
if ($opt{subdir}) {
|
||||||
|
unless ($opt{subdir} eq 'files' or $opt{subdir} eq 'scripts') {
|
||||||
|
die "--subdir option must be 'files' or 'scripts'\n\n$usage";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$opt{subdir} = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
# Prepare for backups
|
||||||
|
if ($opt{backup} and $opt{'backup-dir'}) {
|
||||||
|
# Make sure backup directory exists
|
||||||
|
unless (-d $opt{'backup-dir'}) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "Creating backup directory '$opt{'backup-dir'}'\n";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval { mkpath($opt{'backup-dir'}); };
|
||||||
|
die "Could not mkpath backup dir '$opt{'backup-dir'}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
push(@rsync, "--backup", "--backup-dir=$opt{'backup-dir'}");
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
push @rsync, '--dry-run';
|
||||||
|
}
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'verbose'} > 1) {
|
||||||
|
push @rsync, '--verbose';
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# copy over the new files
|
||||||
|
for my $full_role (@ARGV) {
|
||||||
|
# Split the full role (e.g. google.foogle.woogle) into components
|
||||||
|
my @role_parts = split(/\./, $full_role);
|
||||||
|
die "Internal error: Expect at least one role part" if not @role_parts;
|
||||||
|
# Reassemble parts one at a time onto @role and sync as we go,
|
||||||
|
# so we do "google", then "google.foogle", then "google.foogle.woogle"
|
||||||
|
my @role = ();
|
||||||
|
# Make sure we've got the right perms before we copy stuff down
|
||||||
|
check_stage();
|
||||||
|
|
||||||
|
# For the base role, do both files and scripts.
|
||||||
|
push @role, shift @role_parts;
|
||||||
|
for my $subdir(qw(files scripts)) {
|
||||||
|
if (not $opt{subdir} or $opt{subdir} eq $subdir) {
|
||||||
|
($opt{verbose} > 1)
|
||||||
|
and print STDERR "$PROG: Calling sync_role for $full_role, @role\n";
|
||||||
|
# @role here will have one element, so sync_role will use --delete
|
||||||
|
sync_role($full_role, $subdir, @role)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# For all subroles, just do the files.
|
||||||
|
# (If we wanted script subroles to work like files, we'd get rid of this
|
||||||
|
# distinction and simplify the code.)
|
||||||
|
if (not $opt{subdir} or $opt{subdir} eq 'files') {
|
||||||
|
while (@role_parts) {
|
||||||
|
push @role, shift @role_parts;
|
||||||
|
($opt{verbose} > 1)
|
||||||
|
and print STDERR "$PROG: Calling sync_role for $full_role, @role\n";
|
||||||
|
sync_role($full_role, 'files', @role);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for my $subdir (qw(files scripts)) {
|
||||||
|
apply_default_perms_to_role($full_role, $subdir)
|
||||||
|
if (not $opt{subdir} or $opt{subdir} eq $subdir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exit 0;
|
||||||
|
|
||||||
|
# Make sure the stage directory exists and is mode 0700, to protect files
|
||||||
|
# underneath in transit
|
||||||
|
sub check_stage () {
|
||||||
|
my $stage = $opt{stage} . "/roles";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
if (not -d $stage) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Creating '$stage'\n";
|
||||||
|
eval { mkpath($stage); };
|
||||||
|
die "Could not mkpath cache dir '$stage': $@\n" if $@;
|
||||||
|
}
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Checking perms on '$stage'\n";
|
||||||
|
if ($> != 0) {
|
||||||
|
warn "WARNING[$PROG]: Not superuser; unable to chown files\n";
|
||||||
|
} else {
|
||||||
|
chown(0, 0, $stage)
|
||||||
|
or die "Could not chown 0:0 '$stage': $!\n";
|
||||||
|
}
|
||||||
|
chmod(0700, $stage)
|
||||||
|
or die "Could not chmod 0700 '$stage': $!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Copy the files for a role from CACHE to STAGE
|
||||||
|
sub sync_role ($$@) {
|
||||||
|
my ($full_role, $subdir, @role) = @_;
|
||||||
|
my @this_rsync = @rsync;
|
||||||
|
|
||||||
|
# If we were only given one role part, we're in the base role
|
||||||
|
my $in_base_role = (scalar @role == 1);
|
||||||
|
|
||||||
|
# For the base role, delete any files that don't exist in the cache.
|
||||||
|
# Not for the subrole (otherwise we'll delete all files not in
|
||||||
|
# the subrole, which may be most of them!)
|
||||||
|
if ($in_base_role) {
|
||||||
|
push @this_rsync, "--delete";
|
||||||
|
}
|
||||||
|
|
||||||
|
# (a) => a/files
|
||||||
|
# (a,b,c) => a/files.b.c
|
||||||
|
my $src_path = $role[0].'/'.join(".", $subdir, @role[1 .. $#role]);
|
||||||
|
# This one's a little simpler:
|
||||||
|
my $dst_path = $full_role.'/'.$subdir;
|
||||||
|
|
||||||
|
# final / is important for rsync
|
||||||
|
my $source = $opt{cache} . "/roles/" . $src_path . "/";
|
||||||
|
my $destination = $opt{stage} . "/roles/" . $dst_path . "/";
|
||||||
|
if (not -d $destination and -d $source) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Creating '$destination'\n";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval { mkpath($destination); };
|
||||||
|
die "Could not mkpath stage dir '$destination': $@\n" if $@;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# We no longer require the source to exist
|
||||||
|
if (not -d $source) {
|
||||||
|
# but we need to remove the destination if the source
|
||||||
|
# doesn't exist and we're in the base role
|
||||||
|
if ($in_base_role) {
|
||||||
|
rmtree($destination);
|
||||||
|
# rmtree() doesn't throw exceptions or give a return value useful
|
||||||
|
# for detecting failure, so we just check after the fact.
|
||||||
|
die "Could not rmtree '$destination' when '$source' missing\n"
|
||||||
|
if -e $destination;
|
||||||
|
}
|
||||||
|
# if we continue, rsync will fail because source is missing,
|
||||||
|
# so we don't.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
# All this to run an rsync command
|
||||||
|
my @command = (@this_rsync, $source, $destination);
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Syncing $src_path with '@command'\n";
|
||||||
|
Slack::wrap_rsync(@command);
|
||||||
|
}
|
||||||
|
|
||||||
|
# This just takes the base role, and chowns/chmods everything under it to
|
||||||
|
# give it some sensible permissions. Basically, the only thing we preserve
|
||||||
|
# about the original permissions is the executable bit, since that's the
|
||||||
|
# only thing source code controls systems like CVS, RCS, Perforce seem to
|
||||||
|
# preserve.
|
||||||
|
sub apply_default_perms_to_role ($$) {
|
||||||
|
my ($role, $subdir) = @_;
|
||||||
|
my $destination = $opt{stage} . "/roles/" . $role;
|
||||||
|
|
||||||
|
if ($subdir) {
|
||||||
|
$destination .= '/' . $subdir;
|
||||||
|
}
|
||||||
|
|
||||||
|
# If the destination doesn't exist, it's probably because the source didn't
|
||||||
|
return if not -d $destination;
|
||||||
|
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Setting default perms on $destination\n";
|
||||||
|
if ($> != 0) {
|
||||||
|
warn "WARNING[$PROG]: Not superuser; won't be able to chown files\n";
|
||||||
|
}
|
||||||
|
# Use File::Find to recurse the directory
|
||||||
|
find({
|
||||||
|
# The "wanted" subroutine is called for every directory entry
|
||||||
|
wanted => sub {
|
||||||
|
return if $opt{'dry-run'};
|
||||||
|
($opt{verbose} > 2) and print STDERR "$File::Find::name\n";
|
||||||
|
if (-l) {
|
||||||
|
# symlinks shouldn't be in here,
|
||||||
|
# since we dereference when copying
|
||||||
|
warn "WARNING[$PROG]: Skipping symlink at $File::Find::name: $!\n";
|
||||||
|
return;
|
||||||
|
} elsif (-f _) { # results of last stat saved in the "_"
|
||||||
|
if (-x _) {
|
||||||
|
chmod 0555, $_
|
||||||
|
or die "Could not chmod 0555 $File::Find::name: $!";
|
||||||
|
} else {
|
||||||
|
chmod 0444, $_
|
||||||
|
or die "Could not chmod 0444 $File::Find::name: $!";
|
||||||
|
}
|
||||||
|
} elsif (-d _) {
|
||||||
|
chmod 0755, $_
|
||||||
|
or die "Could not chmod 0755 $File::Find::name: $!";
|
||||||
|
} else {
|
||||||
|
warn "WARNING[$PROG]: Unknown file type at $File::Find::name: $!\n";
|
||||||
|
}
|
||||||
|
return if $> != 0; # skip chowning if not superuser
|
||||||
|
chown 0, 0, $_
|
||||||
|
or die "Could not chown 0:0 $File::Find::name: $!";
|
||||||
|
},
|
||||||
|
# end of wanted function
|
||||||
|
},
|
||||||
|
# way down here, we have the directory to traverse with File::Find
|
||||||
|
$destination,
|
||||||
|
);
|
||||||
|
}
|
169
slack-dist/dist/slack-sync
vendored
Normal file
169
slack-dist/dist/slack-sync
vendored
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
# $Id: slack-sync 180 2008-01-19 08:26:19Z alan $
|
||||||
|
# vim:sw=2
|
||||||
|
# vim600:fdm=marker
|
||||||
|
# Copyright (C) 2004-2008 Alan Sundell <alan@sundell.net>
|
||||||
|
# All Rights Reserved. This program comes with ABSOLUTELY NO WARRANTY.
|
||||||
|
# See the file COPYING for details.
|
||||||
|
#
|
||||||
|
# This script is in charge of copying files from the (possibly remote)
|
||||||
|
# master directory to a local cache, using rsync
|
||||||
|
|
||||||
|
require 5.006;
|
||||||
|
use warnings FATAL => qw(all);
|
||||||
|
use strict;
|
||||||
|
use sigtrap qw(die untrapped normal-signals
|
||||||
|
stack-trace any error-signals);
|
||||||
|
|
||||||
|
use File::Path;
|
||||||
|
|
||||||
|
use constant LIB_DIR => '/usr/lib/slack';
|
||||||
|
use lib LIB_DIR;
|
||||||
|
use Slack;
|
||||||
|
|
||||||
|
my @rsync = ('rsync',
|
||||||
|
'--cvs-exclude',
|
||||||
|
'--recursive',
|
||||||
|
'--links',
|
||||||
|
'--copy-links',
|
||||||
|
'--times',
|
||||||
|
'--perms',
|
||||||
|
'--sparse',
|
||||||
|
'--delete',
|
||||||
|
'--files-from=-',
|
||||||
|
'--from0',
|
||||||
|
);
|
||||||
|
|
||||||
|
(my $PROG = $0) =~ s#.*/##;
|
||||||
|
|
||||||
|
sub check_cache ($);
|
||||||
|
sub rsync_source ($$@);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Environment
|
||||||
|
# Helpful prefix to die messages
|
||||||
|
$SIG{__DIE__} = sub { die "FATAL[$PROG]: @_"; };
|
||||||
|
# Set a reasonable umask
|
||||||
|
umask 077;
|
||||||
|
# Get out of wherever (possibly NFS-mounted) we were
|
||||||
|
chdir("/")
|
||||||
|
or die "Could not chdir /: $!";
|
||||||
|
# Autoflush on STDERR
|
||||||
|
select((select(STDERR), $|=1)[0]);
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# Config and option parsing {{{
|
||||||
|
my $usage = Slack::default_usage("$PROG [options] <role> [<role>...]");
|
||||||
|
# Option defaults
|
||||||
|
my %opt = ();
|
||||||
|
Slack::get_options(
|
||||||
|
opthash => \%opt,
|
||||||
|
usage => $usage,
|
||||||
|
required_options => [ qw(source cache) ],
|
||||||
|
);
|
||||||
|
|
||||||
|
# Arguments are required
|
||||||
|
die "No roles given!\n\n$usage" unless @ARGV;
|
||||||
|
|
||||||
|
# Prepare for backups
|
||||||
|
if ($opt{backup} and $opt{'backup-dir'}) {
|
||||||
|
# Make sure backup directory exists
|
||||||
|
unless (-d $opt{'backup-dir'}) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "Creating backup directory '$opt{'backup-dir'}'\n";
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
eval { mkpath($opt{'backup-dir'}); };
|
||||||
|
die "Could not mkpath backup dir '$opt{'backup-dir'}': $@\n" if $@;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
push(@rsync, "--backup", "--backup-dir=$opt{'backup-dir'}");
|
||||||
|
}
|
||||||
|
# Look at source type, and add options if necessary
|
||||||
|
if ($opt{'rsh'} or $opt{source} =~ m/^[\w@\.-]+::/) {
|
||||||
|
# This is tunnelled rsync, and so needs an extra option
|
||||||
|
if ($opt{'rsh'}) {
|
||||||
|
push @rsync, '-e', $opt{'rsh'};
|
||||||
|
} else {
|
||||||
|
push @rsync, '-e', 'ssh';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'dry-run'}) {
|
||||||
|
push @rsync, '--dry-run';
|
||||||
|
}
|
||||||
|
# Pass options along to rsync
|
||||||
|
if ($opt{'verbose'} > 1) {
|
||||||
|
push @rsync, '--verbose';
|
||||||
|
}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
my @roles = ();
|
||||||
|
|
||||||
|
{
|
||||||
|
# This hash is just to avoid calling rsync twice if two subroles are
|
||||||
|
# installed. We only care since it's remote, and therefore slow.
|
||||||
|
my %roles_to_sync = ();
|
||||||
|
|
||||||
|
# copy over the new files
|
||||||
|
for my $full_role (@ARGV) {
|
||||||
|
# Get the first element of the role name (the base role)
|
||||||
|
# e.g., from "google.foogle.woogle", get "google"
|
||||||
|
my $base_role = (split /\./, $full_role, 2)[0];
|
||||||
|
|
||||||
|
$roles_to_sync{$base_role} = 1;
|
||||||
|
}
|
||||||
|
@roles = keys %roles_to_sync;
|
||||||
|
}
|
||||||
|
|
||||||
|
my $cache = $opt{cache} . "/roles/";
|
||||||
|
# Make sure we've got the right perms before we copy stuff down
|
||||||
|
check_cache($cache);
|
||||||
|
|
||||||
|
rsync_source(
|
||||||
|
$opt{source} . '/roles/',
|
||||||
|
$cache,
|
||||||
|
@roles,
|
||||||
|
);
|
||||||
|
|
||||||
|
exit 0;
|
||||||
|
|
||||||
|
# Make sure the cache directory exists and is mode 0700, to protect files
|
||||||
|
# underneath in transit
|
||||||
|
sub check_cache ($) {
|
||||||
|
my ($cache) = @_;
|
||||||
|
if (not $opt{'dry-run'}) {
|
||||||
|
if (not -d $cache) {
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Creating '$cache'\n";
|
||||||
|
eval { mkpath($cache); };
|
||||||
|
die "Could not mkpath cache dir '$cache': $@\n" if $@;
|
||||||
|
}
|
||||||
|
($opt{verbose} > 0) and print STDERR "$PROG: Checking perms on '$cache'\n";
|
||||||
|
if ($> != 0) {
|
||||||
|
warn "WARNING[$PROG]: Not superuser; unable to chown files\n";
|
||||||
|
} else {
|
||||||
|
chown(0, 0, $cache)
|
||||||
|
or die "Could not chown 0:0 '$cache': $!\n";
|
||||||
|
}
|
||||||
|
chmod(0700, $cache)
|
||||||
|
or die "Could not chmod 0700 '$cache': $!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Pull down roles from an rsync source
|
||||||
|
sub rsync_source($$@) {
|
||||||
|
my ($source, $destination, @roles) = @_;
|
||||||
|
my @command = (@rsync, $source, $destination);
|
||||||
|
|
||||||
|
($opt{verbose} > 0)
|
||||||
|
and print STDERR "$PROG: Syncing cache with '@command'\n";
|
||||||
|
|
||||||
|
my ($fh) = Slack::wrap_rsync_fh(@command);
|
||||||
|
|
||||||
|
# Shove the roles down its throat
|
||||||
|
print $fh join("\0", @roles), "\0";
|
||||||
|
|
||||||
|
# Close fh, waitpid, and check return value
|
||||||
|
unless (close($fh)) {
|
||||||
|
Slack::check_system_exit(@command);
|
||||||
|
}
|
||||||
|
}
|
0
slack-dist/dist/slack.conf
vendored
Normal file
0
slack-dist/dist/slack.conf
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-bvm.config
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-bvm.config
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ROLE_LIST=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/etc/roles.conf
|
||||||
|
SOURCE=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/
|
||||||
|
CACHE=/var/cache/slack
|
||||||
|
STAGE=/var/lib/slack/stage
|
||||||
|
ROOT=/
|
||||||
|
BACKUP_DIR=/var/lib/slack/backups
|
6
slack-dist/env/aus/SlackConfig-aus-cvm.config
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-cvm.config
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ROLE_LIST=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/etc/roles.conf
|
||||||
|
SOURCE=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/
|
||||||
|
CACHE=/var/cache/slack
|
||||||
|
STAGE=/var/lib/slack/stage
|
||||||
|
ROOT=/
|
||||||
|
BACKUP_DIR=/var/lib/slack/backups
|
6
slack-dist/env/aus/SlackConfig-aus-prod.config
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-prod.config
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ROLE_LIST=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-prod/etc/roles.conf
|
||||||
|
SOURCE=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-prod/
|
||||||
|
CACHE=/var/cache/slack
|
||||||
|
STAGE=/var/lib/slack/stage
|
||||||
|
ROOT=/
|
||||||
|
BACKUP_DIR=/var/lib/slack/backups
|
6
slack-dist/env/aus/SlackConfig-aus-ts.config
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-ts.config
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ROLE_LIST=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-lab/etc/roles.conf
|
||||||
|
SOURCE=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-lab/
|
||||||
|
CACHE=/var/cache/slack
|
||||||
|
STAGE=/var/lib/slack/stage
|
||||||
|
ROOT=/
|
||||||
|
BACKUP_DIR=/var/lib/slack/backups
|
6
slack-dist/env/aus/SlackConfig-aus-uservm.config
vendored
Normal file
6
slack-dist/env/aus/SlackConfig-aus-uservm.config
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ROLE_LIST=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/etc/roles.conf
|
||||||
|
SOURCE=aus-slack-master.tplab.tippingpoint.com:/local/txn04-slack-uservm/
|
||||||
|
CACHE=/var/cache/slack
|
||||||
|
STAGE=/var/lib/slack/stage
|
||||||
|
ROOT=/
|
||||||
|
BACKUP_DIR=/var/lib/slack/backups
|
4
slack-dist/env/aus/SlackSSH-aus-bvm.config
vendored
Normal file
4
slack-dist/env/aus/SlackSSH-aus-bvm.config
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Host aus-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-uservm
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-bvm.key
|
||||||
|
StrictHostKeyChecking no
|
27
slack-dist/env/aus/SlackSSH-aus-bvm.key
vendored
Normal file
27
slack-dist/env/aus/SlackSSH-aus-bvm.key
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEowIBAAKCAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHT
|
||||||
|
S1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZ
|
||||||
|
ZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8
|
||||||
|
+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0
|
||||||
|
BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUF
|
||||||
|
No+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fwIBIwKCAQBFZN7w6mAtxhqkchkw
|
||||||
|
jEIDvVKpbKirIupk9XIa/QNzI7DcnOqipQQ+gE3KNEmYGExKpU4XLVg0TVl0rsWl
|
||||||
|
Va22Qee9Wb8xfI6Dde2MkRiMHBaL/oukF+ic8V3H3UA3A1zSt6uIqffVDzTf7+vr
|
||||||
|
69YsubeHLq43SXx7tMhK6Fi4WmYX/r5+6eLVeJQOn4fHzdI6URqd1CGObgFtVrbk
|
||||||
|
Ysu9/ZdQ5iGMdfC9c8QykqtOOi1ZIGQ3OAgkxjN+cJ6VXGCRcFSN1ZepDZBKs26l
|
||||||
|
rw+1WwyIShAgPtAxTI0ArUvf2HjWLubMO+6tbIh0guzRx/ffiBcmdbg5j3oeMOv5
|
||||||
|
ZBcrAoGBAP2g02qidd4lj8SDPuDJg900A+UKmyBy4SAB+/vdlh1IQAWNeMPxpdeI
|
||||||
|
STH/CSNWP9gGPwdv6qOeIu9EZV9SJkRNZY+FhTC7+9u6rnSmfLon7tMHw7cbXGiB
|
||||||
|
hH04+3MHFz7inY4FezxFVD/2VHAHrXwuUqtvs5NWu0iEXAkboEWvAoGBAN7dLAt7
|
||||||
|
+aT97KTNBcwf8+XFHvZWvSYVaXEiU1OKOhW9qy6X8k+qHw/RWgwyeuhZbsOAerla
|
||||||
|
ZrEuzFB85OU9sNKK+GtsGe5nQg5MSwzjfX9gwruqp27kKtgehur82N9myRCPdpjV
|
||||||
|
yggflq5ka9t4mmxsQO2r1PSL3CkQ1IxhakIxAoGBAO8im3MrdnJd7fPMM/iDfFQ4
|
||||||
|
W3GNqDSJkm6iyQNqhjjduLTHN1mpUzjuNmJW3Lrq670NNBz0fiU9VCNsX5RjZeig
|
||||||
|
vtfHCI0JA2jF9PGkSbbVMaJmaBMLKz32dZqjcLzpbbBSAkQTy/b/ifMqFRkrz3UV
|
||||||
|
u6j0Sjp2WM9YOYTuKWZFAoGBAJJ0FaEllWxsWa4gVERPgwS0vJNAUGl7yPKS5kzX
|
||||||
|
LXwAS+trKjRZ2eXSt4Rbr9qD6bOsM2PcUhypuXa4eSjuBnu6aLuezzZD2vNz9s30
|
||||||
|
lExkKDIuUMU22lOBxl/n/DsJB8kN0ZeibtIjYwTi58q898OXmGGrbq9Ul/26mk2f
|
||||||
|
GfD7AoGBAIa4l+7iHptzr/oK1XjqiVt9xPzkpTUtZvSKcBOvCz2QWKqBPBfidM9S
|
||||||
|
oihQuOH9vo1i9PjerdtXxqqQ5cN5WimCsEtL1KC/xlAzJUlKgdTpyaZZxeBvo9Jt
|
||||||
|
iMc7myVLm6ujBLKCyUFx/kkPUuY+y/Yd/doWEMnTQlSXEBgZQkjf
|
||||||
|
-----END RSA PRIVATE KEY-----
|
1
slack-dist/env/aus/SlackSSH-aus-bvm.pub
vendored
Normal file
1
slack-dist/env/aus/SlackSSH-aus-bvm.pub
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHTS1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUFNo+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fw== cwyble@test
|
4
slack-dist/env/aus/SlackSSH-aus-cvm.config
vendored
Normal file
4
slack-dist/env/aus/SlackSSH-aus-cvm.config
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Host aus-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-uservm
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-cvm.key
|
||||||
|
StrictHostKeyChecking no
|
27
slack-dist/env/aus/SlackSSH-aus-cvm.key
vendored
Normal file
27
slack-dist/env/aus/SlackSSH-aus-cvm.key
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEowIBAAKCAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHT
|
||||||
|
S1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZ
|
||||||
|
ZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8
|
||||||
|
+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0
|
||||||
|
BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUF
|
||||||
|
No+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fwIBIwKCAQBFZN7w6mAtxhqkchkw
|
||||||
|
jEIDvVKpbKirIupk9XIa/QNzI7DcnOqipQQ+gE3KNEmYGExKpU4XLVg0TVl0rsWl
|
||||||
|
Va22Qee9Wb8xfI6Dde2MkRiMHBaL/oukF+ic8V3H3UA3A1zSt6uIqffVDzTf7+vr
|
||||||
|
69YsubeHLq43SXx7tMhK6Fi4WmYX/r5+6eLVeJQOn4fHzdI6URqd1CGObgFtVrbk
|
||||||
|
Ysu9/ZdQ5iGMdfC9c8QykqtOOi1ZIGQ3OAgkxjN+cJ6VXGCRcFSN1ZepDZBKs26l
|
||||||
|
rw+1WwyIShAgPtAxTI0ArUvf2HjWLubMO+6tbIh0guzRx/ffiBcmdbg5j3oeMOv5
|
||||||
|
ZBcrAoGBAP2g02qidd4lj8SDPuDJg900A+UKmyBy4SAB+/vdlh1IQAWNeMPxpdeI
|
||||||
|
STH/CSNWP9gGPwdv6qOeIu9EZV9SJkRNZY+FhTC7+9u6rnSmfLon7tMHw7cbXGiB
|
||||||
|
hH04+3MHFz7inY4FezxFVD/2VHAHrXwuUqtvs5NWu0iEXAkboEWvAoGBAN7dLAt7
|
||||||
|
+aT97KTNBcwf8+XFHvZWvSYVaXEiU1OKOhW9qy6X8k+qHw/RWgwyeuhZbsOAerla
|
||||||
|
ZrEuzFB85OU9sNKK+GtsGe5nQg5MSwzjfX9gwruqp27kKtgehur82N9myRCPdpjV
|
||||||
|
yggflq5ka9t4mmxsQO2r1PSL3CkQ1IxhakIxAoGBAO8im3MrdnJd7fPMM/iDfFQ4
|
||||||
|
W3GNqDSJkm6iyQNqhjjduLTHN1mpUzjuNmJW3Lrq670NNBz0fiU9VCNsX5RjZeig
|
||||||
|
vtfHCI0JA2jF9PGkSbbVMaJmaBMLKz32dZqjcLzpbbBSAkQTy/b/ifMqFRkrz3UV
|
||||||
|
u6j0Sjp2WM9YOYTuKWZFAoGBAJJ0FaEllWxsWa4gVERPgwS0vJNAUGl7yPKS5kzX
|
||||||
|
LXwAS+trKjRZ2eXSt4Rbr9qD6bOsM2PcUhypuXa4eSjuBnu6aLuezzZD2vNz9s30
|
||||||
|
lExkKDIuUMU22lOBxl/n/DsJB8kN0ZeibtIjYwTi58q898OXmGGrbq9Ul/26mk2f
|
||||||
|
GfD7AoGBAIa4l+7iHptzr/oK1XjqiVt9xPzkpTUtZvSKcBOvCz2QWKqBPBfidM9S
|
||||||
|
oihQuOH9vo1i9PjerdtXxqqQ5cN5WimCsEtL1KC/xlAzJUlKgdTpyaZZxeBvo9Jt
|
||||||
|
iMc7myVLm6ujBLKCyUFx/kkPUuY+y/Yd/doWEMnTQlSXEBgZQkjf
|
||||||
|
-----END RSA PRIVATE KEY-----
|
1
slack-dist/env/aus/SlackSSH-aus-cvm.pub
vendored
Normal file
1
slack-dist/env/aus/SlackSSH-aus-cvm.pub
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHTS1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUFNo+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fw== cwyble@test
|
4
slack-dist/env/aus/SlackSSH-aus-prod.config
vendored
Normal file
4
slack-dist/env/aus/SlackSSH-aus-prod.config
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Host aus-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-prod
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-prod.key
|
||||||
|
StrictHostKeyChecking no
|
27
slack-dist/env/aus/SlackSSH-aus-prod.key
vendored
Normal file
27
slack-dist/env/aus/SlackSSH-aus-prod.key
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEogIBAAKCAQEA1Kq6K0qegRGx8+8lXDePrOHbU6jQZXCuwS6Xgn2tKbFmj8cs
|
||||||
|
YLd/I9UJSYXtc/j1aZa3/sQftMdAbvvjfml0TguV4xXJVVm0cTD+SDJ2qCbmpthF
|
||||||
|
A3WDU5YzZAD1HzH9YG5ARqG16TSdsqzeko0LETvHZXsLeU/frWlY39EPJpdw8fI/
|
||||||
|
33UbMddU6cZk8XmES0mIC8dnzxo+U7qqQ7Z2In2sGO+0ZbpUaVcWWMaPsUgP3rJ3
|
||||||
|
qskFQ8DP9/dWqFhsBWb2bAdnqiyHo5FG/u3b/sZ2t9ZB2riU0PB2ts+h+5ef8r/k
|
||||||
|
uHkVe0AQpcApnzkFRjGpz3SbVJMHpAZ0yS5eiQIBIwKCAQBC1pJIHsQZ755T+rP4
|
||||||
|
aTvInsFGLb3WvQO5DqSlWrLD9e0Ina7ckXEZ495Y75PFXN9qU/CvJ7IxgHNWFKaV
|
||||||
|
cZmU3xHZp8Lu8E6nO0iaWQC4gUEtH2YlqJb9A1H627rAqU+h9sO+bVZt3VYiNlSU
|
||||||
|
dXiBwlScPJ00wVTtW5+WzKz9f3rP19vrml27AIhIMdwX+SV6kJwJJQURhOpksY7w
|
||||||
|
IZspKlNqARLw/ImBAuDhBO/dqpTzgJu3i1W3R0eTdj02Z/68NAxK4UnJQphRxHhc
|
||||||
|
P70+jSAoq9qUQixU3tp1CkwTESxkoAp89T0CGGXPRyKbeuFFtVrowCXhdYVp05Ny
|
||||||
|
hw4LAoGBAPEPqOIfyrOag7CtQBkVZs0XBzRZHbQ9U+2Yy/FP8F6K0Vum1XX2oisj
|
||||||
|
6+bx5d1IyWMv0rQDna7+InqjeqZI72xHSYjRP4CLIkDKN6wQA1vj/PazaaoX/oda
|
||||||
|
jF5E3Mm9reWM48JzN7TmeTsKQIALmm59t1DljWxd5sgA3d33gm+ZAoGBAOHYmoq6
|
||||||
|
vz1bl8QQ/uynET/0GR1nBV2f2ZV6izf3uEEr9xh96Ef79KJN1mPgubcy1EccdRoC
|
||||||
|
Euhy0s6t1e2bBtU4vaOVQOUTB9aPXNYmfMjfZY4OpuBIFgwLQez9jENHEC0lsF39
|
||||||
|
euRISqjwtJiNoz5fCsNLJrZvHwuA+8GrFXxxAoGBANxmFsAdERk80CyBJKk4I3mu
|
||||||
|
p4BRej5j9PZ9Eju2zSM9Fy85crT+wCdxTLXkemPqxsEVx/UKnsvhCZSyuUeTJAs5
|
||||||
|
3NTckdScdxaqQYdfGQOOniNiNLjFev9outnYj1lc9sM+/B9/SN/oqVqNB8WG85g4
|
||||||
|
bRbDP3kFZUklXSK2aKCLAoGBAK45YUZyzgrDAAxHoBWlc7T+IgC9MAZlXrUkBP9K
|
||||||
|
EcvgFmNZ0HILgjQQKQs4VMCGS/xXyAy/xXF9JkeqrFg1w3FJB1JOkSW+OT8eIwua
|
||||||
|
CH2zph0hPueIEQH6DkkbXZL8Tk62rKBHMuqeKvdamfIG3QQ6sIgGxhe0zs5cL+0s
|
||||||
|
NSV7AoGAbAJlvWitaJS1LohZlm+9xi3m4AlkztwkO9adsg/tbX9VDWVhwHgA/Hlc
|
||||||
|
Eb5oyLCWshhTSX632A4npp6ly1H21O4dRScyJnXLdXssniyn6H+O5BTURmre0kox
|
||||||
|
noj37D5zt5g+J3r9o/OPdTLYj7WZaAUg3h6NMwKA6PHvqDD+ZWw=
|
||||||
|
-----END RSA PRIVATE KEY-----
|
1
slack-dist/env/aus/SlackSSH-aus-prod.pub
vendored
Normal file
1
slack-dist/env/aus/SlackSSH-aus-prod.pub
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA1Kq6K0qegRGx8+8lXDePrOHbU6jQZXCuwS6Xgn2tKbFmj8csYLd/I9UJSYXtc/j1aZa3/sQftMdAbvvjfml0TguV4xXJVVm0cTD+SDJ2qCbmpthFA3WDU5YzZAD1HzH9YG5ARqG16TSdsqzeko0LETvHZXsLeU/frWlY39EPJpdw8fI/33UbMddU6cZk8XmES0mIC8dnzxo+U7qqQ7Z2In2sGO+0ZbpUaVcWWMaPsUgP3rJ3qskFQ8DP9/dWqFhsBWb2bAdnqiyHo5FG/u3b/sZ2t9ZB2riU0PB2ts+h+5ef8r/kuHkVe0AQpcApnzkFRjGpz3SbVJMHpAZ0yS5eiQ== cwyble@test
|
9
slack-dist/env/aus/SlackSSH-aus-ts.config
vendored
Normal file
9
slack-dist/env/aus/SlackSSH-aus-ts.config
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Host aus-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-lab
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-ts.key
|
||||||
|
StrictHostKeyChecking no
|
||||||
|
|
||||||
|
Host txn04-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-lab
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-ts.key
|
||||||
|
StrictHostKeyChecking no
|
12
slack-dist/env/aus/SlackSSH-aus-ts.key
vendored
Normal file
12
slack-dist/env/aus/SlackSSH-aus-ts.key
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
-----BEGIN DSA PRIVATE KEY-----
|
||||||
|
MIIBuwIBAAKBgQDDd16scdqxo2YM9StTb9KsrrgZFGLCBMZovyvZaj/M3p2vxtPM
|
||||||
|
xa4ZI8csEwjHHCV5RfkHo6FbDFmSRS3IYDDcx4u4zWxLltB1o1XZdXWwfmSwfItl
|
||||||
|
Z8gQSNRO6BzTiNQJXRUAdrSGkvtgZyh6Bmokww4XK6JS+wKeTpy8inlXxQIVANrm
|
||||||
|
0lb8ohDZb+B7A3fy2PC6Zy9XAoGACZgXBln6633+l2//HqIbC1MVqKvDUMuSuws3
|
||||||
|
xrCq6mrTTngWxnSq1fQRxTkSfVjWqVv2awwD5XKkuc09cBl0Bhw7m+8l+ZlQC2ZY
|
||||||
|
5x4rgQcBz+lF802vfscU4cnjOBsGCUp5Msy5ESLzUqoaj96ZTgjltw18b0oxnZ2E
|
||||||
|
ttGxcV8CgYAqXhFmoYsFjdLnkpbPWB70xY4cxxd2eCZxkrEipiN0TilkUAD1JWGk
|
||||||
|
D5Dw7xTty4zEyTceY7cXuBkFWTmu4NSCvt+feXohsDR8k8ZtDrR6sdey1rf0B9zd
|
||||||
|
X/ZJW587mshz3KEE/Gd3b5b8vC7qWn8dkWXY14Qn8Xjq5JgIhigMwwIVAJ//izMq
|
||||||
|
dTJiqs89kooxSi0NS0UL
|
||||||
|
-----END DSA PRIVATE KEY-----
|
1
slack-dist/env/aus/SlackSSH-aus-ts.pub
vendored
Normal file
1
slack-dist/env/aus/SlackSSH-aus-ts.pub
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-dss AAAAB3NzaC1kc3MAAACBAMN3Xqxx2rGjZgz1K1Nv0qyuuBkUYsIExmi/K9lqP8zena/G08zFrhkjxywTCMccJXlF+QejoVsMWZJFLchgMNzHi7jNbEuW0HWjVdl1dbB+ZLB8i2VnyBBI1E7oHNOI1AldFQB2tIaS+2BnKHoGaiTDDhcrolL7Ap5OnLyKeVfFAAAAFQDa5tJW/KIQ2W/gewN38tjwumcvVwAAAIAJmBcGWfrrff6Xb/8eohsLUxWoq8NQy5K7CzfGsKrqatNOeBbGdKrV9BHFORJ9WNapW/ZrDAPlcqS5zT1wGXQGHDub7yX5mVALZljnHiuBBwHP6UXzTa9+xxThyeM4GwYJSnkyzLkRIvNSqhqP3plOCOW3DXxvSjGdnYS20bFxXwAAAIAqXhFmoYsFjdLnkpbPWB70xY4cxxd2eCZxkrEipiN0TilkUAD1JWGkD5Dw7xTty4zEyTceY7cXuBkFWTmu4NSCvt+feXohsDR8k8ZtDrR6sdey1rf0B9zdX/ZJW587mshz3KEE/Gd3b5b8vC7qWn8dkWXY14Qn8Xjq5JgIhigMww==
|
4
slack-dist/env/aus/SlackSSH-aus-uservm.config
vendored
Normal file
4
slack-dist/env/aus/SlackSSH-aus-uservm.config
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Host aus-slack-master.tplab.tippingpoint.com
|
||||||
|
User txn04-slack-uservm
|
||||||
|
IdentityFile /root/.ssh/SlackSSH-aus-uservm.key
|
||||||
|
StrictHostKeyChecking no
|
27
slack-dist/env/aus/SlackSSH-aus-uservm.key
vendored
Normal file
27
slack-dist/env/aus/SlackSSH-aus-uservm.key
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEowIBAAKCAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHT
|
||||||
|
S1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZ
|
||||||
|
ZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8
|
||||||
|
+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0
|
||||||
|
BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUF
|
||||||
|
No+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fwIBIwKCAQBFZN7w6mAtxhqkchkw
|
||||||
|
jEIDvVKpbKirIupk9XIa/QNzI7DcnOqipQQ+gE3KNEmYGExKpU4XLVg0TVl0rsWl
|
||||||
|
Va22Qee9Wb8xfI6Dde2MkRiMHBaL/oukF+ic8V3H3UA3A1zSt6uIqffVDzTf7+vr
|
||||||
|
69YsubeHLq43SXx7tMhK6Fi4WmYX/r5+6eLVeJQOn4fHzdI6URqd1CGObgFtVrbk
|
||||||
|
Ysu9/ZdQ5iGMdfC9c8QykqtOOi1ZIGQ3OAgkxjN+cJ6VXGCRcFSN1ZepDZBKs26l
|
||||||
|
rw+1WwyIShAgPtAxTI0ArUvf2HjWLubMO+6tbIh0guzRx/ffiBcmdbg5j3oeMOv5
|
||||||
|
ZBcrAoGBAP2g02qidd4lj8SDPuDJg900A+UKmyBy4SAB+/vdlh1IQAWNeMPxpdeI
|
||||||
|
STH/CSNWP9gGPwdv6qOeIu9EZV9SJkRNZY+FhTC7+9u6rnSmfLon7tMHw7cbXGiB
|
||||||
|
hH04+3MHFz7inY4FezxFVD/2VHAHrXwuUqtvs5NWu0iEXAkboEWvAoGBAN7dLAt7
|
||||||
|
+aT97KTNBcwf8+XFHvZWvSYVaXEiU1OKOhW9qy6X8k+qHw/RWgwyeuhZbsOAerla
|
||||||
|
ZrEuzFB85OU9sNKK+GtsGe5nQg5MSwzjfX9gwruqp27kKtgehur82N9myRCPdpjV
|
||||||
|
yggflq5ka9t4mmxsQO2r1PSL3CkQ1IxhakIxAoGBAO8im3MrdnJd7fPMM/iDfFQ4
|
||||||
|
W3GNqDSJkm6iyQNqhjjduLTHN1mpUzjuNmJW3Lrq670NNBz0fiU9VCNsX5RjZeig
|
||||||
|
vtfHCI0JA2jF9PGkSbbVMaJmaBMLKz32dZqjcLzpbbBSAkQTy/b/ifMqFRkrz3UV
|
||||||
|
u6j0Sjp2WM9YOYTuKWZFAoGBAJJ0FaEllWxsWa4gVERPgwS0vJNAUGl7yPKS5kzX
|
||||||
|
LXwAS+trKjRZ2eXSt4Rbr9qD6bOsM2PcUhypuXa4eSjuBnu6aLuezzZD2vNz9s30
|
||||||
|
lExkKDIuUMU22lOBxl/n/DsJB8kN0ZeibtIjYwTi58q898OXmGGrbq9Ul/26mk2f
|
||||||
|
GfD7AoGBAIa4l+7iHptzr/oK1XjqiVt9xPzkpTUtZvSKcBOvCz2QWKqBPBfidM9S
|
||||||
|
oihQuOH9vo1i9PjerdtXxqqQ5cN5WimCsEtL1KC/xlAzJUlKgdTpyaZZxeBvo9Jt
|
||||||
|
iMc7myVLm6ujBLKCyUFx/kkPUuY+y/Yd/doWEMnTQlSXEBgZQkjf
|
||||||
|
-----END RSA PRIVATE KEY-----
|
1
slack-dist/env/aus/SlackSSH-aus-uservm.pub
vendored
Normal file
1
slack-dist/env/aus/SlackSSH-aus-uservm.pub
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3MyW0AEDel8O8/atPWEvIyvYeCsv8fq7QTuCVd85haAbeCHTS1Le9Wmxsewv+zYKBMgnA+1ed97W0Fqjayfi5tGyzte9buloXHc5p/w21RONjuQZZzTM3BdBqnopaTk+nnbzPnnmAwHWyIcF7qiSMTelCzdwJEbpLIUI7lel7X6VsxK8+BHghOTMCm7RTe9f4TwwEbVrfAWs9JHD4WekBVfnD40hQ2q2y7Z/6bPPqJZDFqx0BaaF/CASJQ2xglobj9qq43VHgvS1IzRtPA/3JtNCNYVZTtq/yIqdN/u4Nhy4pzUFNo+Y6c/mWRsOeNtxp6G0ONCMPKXHmClVxRp0fw== cwyble@test
|
BIN
slack-dist/slackDist.tar.gz
Normal file
BIN
slack-dist/slackDist.tar.gz
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user