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
| sunflow - rendering system for photo-realistic image synthesis | |
| sun-java5-bin - Sun Java(TM) Runtime Environment (JRE) 5.0 (architecture dependent files) | |
| sun-java5-demo - Sun Java(TM) Development Kit (JDK) 5.0 demos and examples | |
| sun-java5-doc - Sun JDK(TM) Documention -- integration installer | |
| sun-java5-fonts - Lucida TrueType fonts (from the Sun JRE) | |
| sun-java5-jdk - Sun Java(TM) Development Kit (JDK) 5.0 | |
| sun-java5-jre - Sun Java(TM) Runtime Environment (JRE) 5.0 (architecture independent files) | |
| sun-java5-plugin - The Java(TM) Plug-in, Java SE 5.0 | |
| sun-java5-source - Sun Java(TM) Development Kit (JDK) 5.0 source files | |
| sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (architecture dependent files) |
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
| TEMP=$(mktemp /tmp/inode_db.XXXX); | |
| find * -type f | while read line; do | |
| inode=$(stat -c'%i' "${line}"); | |
| echo "${inode} ${line}"; | |
| done > $TEMP | |
| myinode=$(stat -c $i $file) | |
| grep -q "^myinode " ${TEMP} | |
| if [ $? -ne 0 ];then | |
| SHA1SUM=$(sha1 $file) |
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
| 11:57 -!- modload MODLOAD <[path/]module.so> | |
| 11:57 -!- modload | |
| 11:57 -!- modload -- Load a module into the ircd | |
| 11:57 -!- modload the optional path can be an absolute path | |
| 11:57 -!- modload from / or from the IRCD_PREFIX | |
| 11:57 -!- modload (ie modules/autoload/m_users.so) | |
| 11:57 -!- modload NOTE: Restricted to admins only | |
| 11:57 -!- modload | |
| 11:57 -!- modload End of /HELP. |
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
| 11:54 -!- index Help topics available to opers: | |
| 11:54 -!- index | |
| 11:54 -!- index CAPAB CAPTURE CBURST CHGHOST | |
| 11:54 -!- index CHGIDENT CHGNAME CLASSLIST CLEARCHAN | |
| 11:54 -!- index CLIENT CLOSE CONNECT CRYPTLINK | |
| 11:54 -!- index CTRACE DELSPOOF DIE DLINE | |
| 11:54 -!- index DROP EOB ETRACE FORCEJOIN | |
| 11:54 -!- index FORCEPART GLINE HASH JUPE | |
| 11:54 -!- index KILL KLINE KNOCKLL LLJOIN | |
| 11:54 -!- index LLNICK LOCOPS LTRACE MKPASSWD |
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
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O [email protected] * james AbDGHKlNORsUx opers | |
| 11:30 -!- O End of /STATS report |
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
| Check status | |
| Schema check failed | |
| The required objectClass 'gosaObject' is not present in your schema setup | |
| The required objectClass 'gosaAccount' is not present in your schema setup | |
| The required objectClass 'gosaLockEntry' is not present in your schema setup | |
| The optional objectClass 'gosaCacheEntry' is not present in your schema setup |
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
| Requirement 6: Develop and maintain secure systems and applications | |
| Security vulnerabilities in systems and applications may allow criminals to access PAN and other | |
| cardholder data. Many of these vulnerabilities are eliminated by installing vendor-provided security | |
| patches, which perform a quick-repair job for a specific piece of programming code. All critical | |
| systems must have the most recently released software patches to prevent exploitation. Organizations | |
| should apply patches to less-critical systems as soon as possible, based on a risk-based vulnerability | |
| management program. Secure coding practices for developing payments applications, change | |
| control procedures and other secure software development practices should always be followed. | |
| 6.1 Ensure that all system components and software have the latest vendor-supplied security | |
| patches installed. Deploy critical patches within a month of release. |
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
| use strict; | |
| use vars qw($VERSION %IRSSI); | |
| $VERSION = '0.01'; | |
| %IRSSI = ( | |
| authors => 'fapestniegd', | |
| contact => '###########@gmail.com', | |
| name => 'autoconnectssl', | |
| description => 'automatically connect to SSL servers on startup', | |
| license => 'Public Domain||GPLv2 or greater', |
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
| PREREQ="mdadm" | |
| prereqs(){ | |
| echo "$PREREQ" | |
| } | |
| . /scripts/functions | |
| case $1 in | |
| prereqs) | |
| prereqs | |
| exit 0 | |
| ;; |
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
| :::::::::::::: | |
| pre-commit | |
| :::::::::::::: | |
| #!/bin/sh | |
| clear; | |
| /usr/local/sbin/cf-promises -f $(pwd)/inputs/promises.cf | |
| if [ -f promises.cf.html ]; then rm promises.cf.html; fi | |
| if [ -f promises.cf.txt ]; then rm promises.cf.txt; fi | |
| :::::::::::::: | |
| post-commit |