Linux web0273.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
Apache
: 127.0.0.1 | : 216.73.216.133
Cant Read [ /etc/named.conf ]
8.3.31
r2745769
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
VM /
EC2 /
[ HOME SHELL ]
Name
Size
Permission
Action
BlockDevice
[ DIR ]
drwxr-xr-x
DB
[ DIR ]
drwxr-xr-x
ELB
[ DIR ]
drwxr-xr-x
Image
[ DIR ]
drwxr-xr-x
Instance
[ DIR ]
drwxr-xr-x
NetworkInterface
[ DIR ]
drwxr-xr-x
REST
[ DIR ]
drwxr-xr-x
ReservedInstance
[ DIR ]
drwxr-xr-x
Security
[ DIR ]
drwxr-xr-x
SecurityGroup
[ DIR ]
drwxr-xr-x
Snapshot
[ DIR ]
drwxr-xr-x
Spot
[ DIR ]
drwxr-xr-x
Staging
[ DIR ]
drwxr-xr-x
VPC
[ DIR ]
drwxr-xr-x
Volume
[ DIR ]
drwxr-xr-x
ASG.pm
1.77
KB
-rw-r--r--
AccountAttributes.pm
1.76
KB
-rw-r--r--
AvailabilityZone.pm
1.84
KB
-rw-r--r--
BlockDevice.pm
3.91
KB
-rw-r--r--
Dispatch.pm
16.98
KB
-rw-r--r--
ELB.pm
21.95
KB
-rw-r--r--
ElasticAddress.pm
2.82
KB
-rw-r--r--
Error.pm
2.04
KB
-rw-r--r--
Generic.pm
11.6
KB
-rw-r--r--
Group.pm
2.41
KB
-rw-r--r--
Image.pm
12.83
KB
-rw-r--r--
Instance.pm
28.6
KB
-rw-r--r--
KeyPair.pm
1.81
KB
-rw-r--r--
LaunchConfiguration.pm
1.27
KB
-rw-r--r--
NetworkInterface.pm
11.6
KB
-rw-r--r--
ParmParser.pm
9.94
KB
-rw-r--r--
PlacementGroup.pm
1.61
KB
-rw-r--r--
ProductCode.pm
1.49
KB
-rw-r--r--
Region.pm
1.99
KB
-rw-r--r--
ReservationSet.pm
1.67
KB
-rw-r--r--
ReservedInstance.pm
4.04
KB
-rw-r--r--
ScalingPolicy.pm
1.99
KB
-rw-r--r--
SecurityGroup.pm
12.73
KB
-rw-r--r--
Snapshot.pm
12.68
KB
-rw-r--r--
Tag.pm
1.92
KB
-rw-r--r--
VPC.pm
5.72
KB
-rw-r--r--
Volume.pm
9.21
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PlacementGroup.pm
package VM::EC2::PlacementGroup; =head1 NAME VM::EC2::PlacementGroup - Object describing an Amazon EC2 cluster placement group =head1 SYNOPSIS use VM::EC2; $ec2 = VM::EC2->new(...); $group = $ec2->describe_placement_groups(-group_name=>'clusterXYZ'); $state = $group->state; =head1 DESCRIPTION This object represents a cluster placement group. =head1 METHODS These object methods are supported: groupName -- the group's name strategy -- the placement strategy valid values: cluster state -- the state of the placement group valid values: pending | available | deleting | deleted In addition, this object supports the delete() method. =head1 STRING OVERLOADING When used in a string context, this object will interpolate the groupName. =head1 SEE ALSO L<VM::EC2> L<VM::EC2::Object> L<VM::EC2::Generic> =head1 AUTHOR Lance Kinley E<lt>lkinley@loyaltymethods.comE<gt>. Copyright (c) 2012 Loyalty Methods, Inc. This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER.txt for disclaimers of warranty. =cut use strict; use base 'VM::EC2::Generic'; sub valid_fields { my $self = shift; return $self->SUPER::valid_fields, qw(groupName strategy state); } sub primary_id { shift->groupName } sub delete { my $self = shift; $self->aws->delete_placement_group($self->groupName) } 1;
Close