Skip to content

Commit

Permalink
Merge branch 'master' of github.com:relevance/etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Clinton Dreisbach authored and Relevance Pair committed Oct 23, 2012
2 parents ff8d821 + 9854baa commit 012b269
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions scripts/pair
Expand Up @@ -21,6 +21,7 @@ AUTHORS = {
"ca" => "Craig Andera", "ca" => "Craig Andera",
"cd" => "Clinton Dreisbach", "cd" => "Clinton Dreisbach",
"cr" => "Chris Redinger", "cr" => "Chris Redinger",
"dm" => "Daemian Mack",
"gh" => "Gabriel Horner", "gh" => "Gabriel Horner",
"jd" => "Jon Distad", "jd" => "Jon Distad",
"jg" => "Justin Gehtland", "jg" => "Justin Gehtland",
Expand All @@ -30,6 +31,7 @@ AUTHORS = {
"jp" => "Jared Pace", "jp" => "Jared Pace",
"jr" => "Jason Rudolph", "jr" => "Jason Rudolph",
"ka" => "Kevin Altman", "ka" => "Kevin Altman",
"kn" => "Kevin Neaton",
"ke" => "Kelly Ehret", "ke" => "Kelly Ehret",
"ld" => "Lake Denman", "ld" => "Lake Denman",
"lk" => "Larry Karnowski", "lk" => "Larry Karnowski",
Expand All @@ -43,7 +45,9 @@ AUTHORS = {
"sh" => "Stuart Halloway", "sh" => "Stuart Halloway",
"ss" => "Stuart Sierra", "ss" => "Stuart Sierra",
"su" => "Sam Umbach", "su" => "Sam Umbach",
"tb" => "Timothy Baldridge",
"te" => "Tim Ewald", "te" => "Tim Ewald",
"yh" => "Yoko Harada",
} }


## End of configuration ## End of configuration
Expand Down
6 changes: 4 additions & 2 deletions scripts/upgrade_nx.rb
@@ -1,8 +1,10 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby


require 'open-uri' require 'open-uri'
body = open("http://www.nomachine.com/preview/download-package.php?Prod_Id=1").read body = open("http://www.nomachine.com/preview/download-package.php?Prod_Id=3").read
package_uri = body[%r{http:.*?amd64\.deb}] or abort "Uri for debian package not found!" package_uri = body[%r{http:.*?nxserver[^/]+\.deb}] or abort "Uri for debian package not found!"
# since we don't get the amd64 uri directly
package_uri.sub!('i386', 'amd64')
package_basename = package_uri[/nxserver.*\.deb$/] or abort "No basename for debian package found!" package_basename = package_uri[/nxserver.*\.deb$/] or abort "No basename for debian package found!"
puts "Installing latest package: #{package_uri}\n\n" puts "Installing latest package: #{package_uri}\n\n"


Expand Down

0 comments on commit 012b269

Please sign in to comment.