Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby19 /
lib64 /
ruby /
1.9.1 /
rake /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
compositepublisher.rb
351
B
-rw-r--r--
2011-06-24 03:41
ftptools.rb
3.67
KB
-rw-r--r--
2011-06-24 03:41
publisher.rb
1.79
KB
-rw-r--r--
2011-06-29 08:39
rubyforgepublisher.rb
302
B
-rw-r--r--
2009-10-03 21:10
sshpublisher.rb
1.2
KB
-rw-r--r--
2011-06-24 03:41
sys.rb
4.93
KB
-rw-r--r--
2011-06-24 03:41
Save
Rename
module Rake # Manage several publishers as a single entity. class CompositePublisher def initialize @publishers = [] end # Add a publisher to the composite. def add(pub) @publishers << pub end # Upload all the individual publishers. def upload @publishers.each { |p| p.upload } end end end