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/env bash | |
| curl --get "http://localhost:3000/xbmcCmds/xbmcHttp?command=ExecBuiltIn¶meter=XBMC.updatelibrary(video)" |
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
| # /etc/puppet/manifests/modules.pp | |
| import "sudo" | |
| import "syslog-ng" | |
| # /etc/puppet/manifests/site.pp | |
| import "modules" | |
| import "nodes" | |
| import "templates" |
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
| # /etc/puppet/modules/znc/manifests/init.pp | |
| class znc { | |
| package { | |
| znc: ensure => latest | |
| znc-dev: ensure => latest, | |
| znc-extra: ensure => latest, | |
| znc-perl: ensure => latest, | |
| znc-tcl: ensure => latest, | |
| znc-webadmin: ensure => latest, |
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
| ### END INIT INFO | |
| # PATH should only include /usr/* if it runs after the mountnfs.sh script | |
| PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
| DESC="znc, an advanced modular IRC bouncer" | |
| NAME=znc | |
| DAEMON=/usr/bin/$NAME | |
| DAEMON_ARGS="-d /etc/znc" | |
| PIDFILE=/var/run/$NAME.pid | |
| SCRIPTNAME=/etc/init.d/$NAME |
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
| Listen = +8080 | |
| LoadModule = modperl | |
| LoadModule = webadmin | |
| <User jamison> | |
| Pass = e5fc47de744a988081ba09aeba6f6174 - | |
| Admin = true | |
| Nick = jamison | |
| AltNick = jamison_ | |
| Ident = jamison |
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
| __version__ = 18 | |
| [misc] | |
| log_dir = ${sabnzbdroot}/logs | |
| auto_browser = 0 | |
| permissions = 755 | |
| api_key = XXXXXXXXXXXXXXXXXXXXXXX | |
| check_new_rel = 1 | |
| replace_spaces = 0 | |
| replace_illegal = 1 | |
| fail_on_crc = 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
| galactica:Programming james$ git clone gitosis@odin.websages.com:tumble.wcyd.org.git | |
| Cloning into tumble.wcyd.org... | |
| gitosis@odin.websages.com's password: |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAs+GeGLixX7tHme1SSXbesHfGCk7FoFwfhioXSlzYEU9bdUOqA0g9Okfvb5LR+BClJI31QQ6QM7ccW7QJGJlcbrw4TqDe8wD3vrl417FBDyAtSs+AUVdh7WKSbkTptXZCTr0DOsNgQtuM+CQXMxvF09rsHp/JYCboCSngMeBKyTKs+rsT8XAutJXSCoGlkNFFtZfNA9J++Uk9O25Up50k1ZBokG3dCrzrq0rcG3vIj7yCAUcGHP+m2CyauS874G86dhCbTnX7zvkDrWN+Fgque+hFNZYRPzmwCLzM0Fpr3Y28+dZUR/zrxVty2Ddm1XxTMmNEa4ZOWislNCDeiSaaTw== james@vladimir.frymanet.com |
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
| # upload.rb | |
| require 'rubygems' | |
| require 'sinatra' | |
| require 'FileUtils' | |
| get '*' do | |
| "Nothing to see here" | |
| end | |
| post '*' do |
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
| --- puppet-enterprise-installer.old 2011-04-28 21:19:38.483204013 -0500 | |
| +++ puppet-enterprise-installer 2011-04-28 22:20:22.742210017 -0500 | |
| @@ -1120,7 +1120,7 @@ | |
| #---[ Paranoia ]-------------------------------------------------------- | |
| # Exit immediately if a simple command exits with a non-zero status: | |
| - set -e | |
| + #set -e | |
| #---[ Debug ]----------------------------------------------------------- |
OlderNewer