This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################################################ | |
| # Which ICA signs a given cn? | |
| # | |
| # if you do not have an attribute "cn=Root" | |
| # you sign yourself | |
| # | |
| # if you do not have an attribute "cn=Intermediate" | |
| # go to your parent, | |
| # find the ou=Certificate Authority at the same level | |
| # go down to the cn=Intermediate under it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NETWORK=$1 | |
| if [ -z ${NETWORK} ]; then | |
| echo "Usage: $0 10.20.30 (for 10.20.30.x)" | |
| exit 1; | |
| fi | |
| for h in `seq 1 254`; do | |
| NAME=''; | |
| ping -i c3 -w3 ${NETWORK}.${h} >/dev/null 2>&1 || \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [root@tyr ~]# rpm -ql synergy-plus | |
| /usr/bin/synergyc | |
| /usr/bin/synergys | |
| /usr/share/doc/synergy-plus-1.3.4 | |
| /usr/share/doc/synergy-plus-1.3.4/COPYING | |
| /usr/share/doc/synergy-plus-1.3.4/README | |
| /usr/share/doc/synergy-plus-1.3.4/synergy.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| disk_config sda bootable:1 | |
| primary /boot 128 ext3 rw | |
| primary -:encrypt 18432-20480 - - | |
| primary -:encrypt 1024- - - | |
| disk_config lvm | |
| vg vg0 sda2 | |
| vg vg_opt sda3 | |
| vg0-swap swap 2048 swap sw | |
| vg0-root / 768 ext3 rw,errors=remount-ro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| err: /Stage[main]/Nzbmediagrabber::Sbeard::Service/Service[sickbeard]/enable: change from false to true failed: Execution of '/usr/sbin/update-rc.d sickbeard defaults' returned 1: update-rc.d: using dependency based boot sequencing | |
| insserv: script sickbeard: service application already provided! | |
| insserv: exiting now! | |
| update-rc.d: error: insserv rejected the script header |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #host hp-thinclient { | |
| # black-hp-thinclient | |
| #hardware ethernet 00:22:64:28:c7:fc; | |
| # ebony | |
| #hardware ethernet 00:24:e8:95:41:d9; | |
| # ivory | |
| #hardware ethernet 00:24:e8:95:4c:6c; | |
| # Roy Oracion | |
| #hardware ethernet 00:1c:23:2d:07:2d; | |
| # EMC Consultant |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hello | |
| I wanted to get in touch with all customers that have inquired about and purchased the Backblaze unit in the past to let them know that we are going to be offering a fully assembled and tested Backblaze unit. This option will save you the time of trying to source the parts yourself and the time and effort to assemble and test the unit and you would then also have a fully assembled unit with our standard Protocase guarantee for the chassis and a full warranty on all other parts offered by the individual suppliers. | |
| This unit will consist of all the main parts of the Backblaze unit minus the 44 hard drives | |
| This will include parts such as the chassis, motherboard, power supply, backplanes, 1 boot drive, anti-vibration sleeves etc. | |
| We will be offering the completed unit (Less 44 hard drives) at a cost of $5395.00 (1-4 units) and $4995.00 (5-9 units) | |
| As well as the complete unit we will also still offer the following: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl -w | |
| use strict; | |
| use Data::Dumper; | |
| use Net::LDAP; | |
| my $ldap = Net::LDAP->new( [ 'ldaps://faraday.eftdomain.net:636','ldaps://maxwell.eftdomain.net:636'] ) or die "$@"; | |
| my $mesg = $ldap->bind( 'uid=jameswhite,ou=People,dc=eftdomain,dc=net', | |
| password => $ENV{'WINDOWS_PASSWORD'}, | |
| ); | |
| # grab the entry we want to modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # The base of where our SSL stuff lives. | |
| base="/etc/ssl/private" | |
| # Were we would like to store keys... in this case we take the username given | |
| # to us and store everything there. | |
| mkdir -p $base/users/$1/ | |
| # Let's create us a key for this user... | |
| # yeah not sure why people want to use DES3 but at least let's make us |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ########################################################################### | |
| # Copyright (C) Cfengine AS | |
| # | |
| # This program is free software; you can redistribute it and/or modify it | |
| # under the terms of the GNU General Public License as published by the | |
| # Free Software Foundation; version 3. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |