Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els11.x86_64 #1 SMP Sun Nov 3 09:06:59 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.145.97.235
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
cloud-init /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
seed
[ DIR ]
drwxr-xr-x
cloud-config-add-apt-repos.txt
1.41
KB
-rw-r--r--
cloud-config-apt.txt
12.52
KB
-rw-r--r--
cloud-config-archive-launch-in...
802
B
-rw-r--r--
cloud-config-archive.txt
244
B
-rw-r--r--
cloud-config-boot-cmds.txt
634
B
-rw-r--r--
cloud-config-ca-certs.txt
1.07
KB
-rw-r--r--
cloud-config-chef-oneiric.txt
3.43
KB
-rw-r--r--
cloud-config-chef.txt
3.62
KB
-rw-r--r--
cloud-config-datasources.txt
2.43
KB
-rw-r--r--
cloud-config-disk-setup.txt
8.8
KB
-rw-r--r--
cloud-config-final-message.txt
252
B
-rw-r--r--
cloud-config-gluster.txt
456
B
-rw-r--r--
cloud-config-growpart.txt
980
B
-rw-r--r--
cloud-config-install-packages....
378
B
-rw-r--r--
cloud-config-landscape.txt
779
B
-rw-r--r--
cloud-config-launch-index.txt
594
B
-rw-r--r--
cloud-config-lxd.txt
1.76
KB
-rw-r--r--
cloud-config-mcollective.txt
2.44
KB
-rw-r--r--
cloud-config-mount-points.txt
1.46
KB
-rw-r--r--
cloud-config-ntp.txt
835
B
-rw-r--r--
cloud-config-phone-home.txt
364
B
-rw-r--r--
cloud-config-power-state.txt
1.58
KB
-rw-r--r--
cloud-config-puppet.txt
2.13
KB
-rw-r--r--
cloud-config-reporting.txt
405
B
-rw-r--r--
cloud-config-resolv-conf.txt
527
B
-rw-r--r--
cloud-config-rh_subscription.t...
1.43
KB
-rw-r--r--
cloud-config-rsyslog.txt
1.44
KB
-rw-r--r--
cloud-config-run-cmds.txt
788
B
-rw-r--r--
cloud-config-salt-minion.txt
2.35
KB
-rw-r--r--
cloud-config-seed-random.txt
1.25
KB
-rw-r--r--
cloud-config-ssh-keys.txt
3.21
KB
-rw-r--r--
cloud-config-update-apt.txt
138
B
-rw-r--r--
cloud-config-update-packages.t...
143
B
-rw-r--r--
cloud-config-user-groups.txt
4.82
KB
-rw-r--r--
cloud-config-vendor-data.txt
561
B
-rw-r--r--
cloud-config-write-files.txt
1.11
KB
-rw-r--r--
cloud-config-yum-repo.txt
683
B
-rw-r--r--
cloud-config.txt
20.07
KB
-rw-r--r--
include-once.txt
353
B
-rw-r--r--
include.txt
237
B
-rw-r--r--
kernel-cmdline.txt
839
B
-rw-r--r--
part-handler-v2.txt
1.53
KB
-rw-r--r--
part-handler.txt
834
B
-rw-r--r--
plain-ignored.txt
68
B
-rw-r--r--
upstart-cloud-config.txt
182
B
-rw-r--r--
upstart-rclocal.txt
217
B
-rw-r--r--
user-script.txt
125
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cloud-config-disk-setup.txt
# Cloud-init supports the creation of simple partition tables and file systems # on devices. # Default disk definitions for AWS # -------------------------------- # (Not implemented yet, but provided for future documentation) disk_setup: ephmeral0: table_type: 'mbr' layout: True overwrite: False fs_setup: - label: None, filesystem: ext3 device: ephemeral0 partition: auto # Default disk definitions for Windows Azure # ------------------------------------------ device_aliases: {'ephemeral0': '/dev/sdb'} disk_setup: ephemeral0: table_type: mbr layout: True overwrite: False fs_setup: - label: ephemeral0 filesystem: ext4 device: ephemeral0.1 replace_fs: ntfs # Default disk definitions for SmartOS # ------------------------------------ device_aliases: {'ephemeral0': '/dev/sdb'} disk_setup: ephemeral0: table_type: mbr layout: False overwrite: False fs_setup: - label: ephemeral0 filesystem: ext3 device: ephemeral0.0 # Cavaut for SmartOS: if ephemeral disk is not defined, then the disk will # not be automatically added to the mounts. # The default definition is used to make sure that the ephemeral storage is # setup properly. # "disk_setup": disk partitioning # -------------------------------- # The disk_setup directive instructs Cloud-init to partition a disk. The format is: disk_setup: ephmeral0: table_type: 'mbr' layout: 'auto' /dev/xvdh: table_type: 'mbr' layout: - 33 - [33, 82] - 33 overwrite: True # The format is a list of dicts of dicts. The first value is the name of the # device and the subsequent values define how to create and layout the # partition. # The general format is: # disk_setup: # <DEVICE>: # table_type: 'mbr' # layout: <LAYOUT|BOOL> # overwrite: <BOOL> # # Where: # <DEVICE>: The name of the device. 'ephemeralX' and 'swap' are special # values which are specific to the cloud. For these devices # Cloud-init will look up what the real devices is and then # use it. # # For other devices, the kernel device name is used. At this # time only simply kernel devices are supported, meaning # that device mapper and other targets may not work. # # Note: At this time, there is no handling or setup of # device mapper targets. # # table_type=<TYPE>: Currently the following are supported: # 'mbr': default and setups a MS-DOS partition table # # Note: At this time only 'mbr' partition tables are allowed. # It is anticipated in the future that we'll have GPT as # option in the future, or even "RAID" to create a mdadm # RAID. # # layout={...}: The device layout. This is a list of values, with the # percentage of disk that partition will take. # Valid options are: # [<SIZE>, [<SIZE>, <PART_TYPE]] # # Where <SIZE> is the _percentage_ of the disk to use, while # <PART_TYPE> is the numerical value of the partition type. # # The following setups two partitions, with the first # partition having a swap label, taking 1/3 of the disk space # and the remainder being used as the second partition. # /dev/xvdh': # table_type: 'mbr' # layout: # - [33,82] # - 66 # overwrite: True # # When layout is "true" it means single partition the entire # device. # # When layout is "false" it means don't partition or ignore # existing partitioning. # # If layout is set to "true" and overwrite is set to "false", # it will skip partitioning the device without a failure. # # overwrite=<BOOL>: This describes whether to ride with saftey's on and # everything holstered. # # 'false' is the default, which means that: # 1. The device will be checked for a partition table # 2. The device will be checked for a file system # 3. If either a partition of file system is found, then # the operation will be _skipped_. # # 'true' is cowboy mode. There are no checks and things are # done blindly. USE with caution, you can do things you # really, really don't want to do. # # # fs_setup: Setup the file system # ------------------------------- # # fs_setup describes the how the file systems are supposed to look. fs_setup: - label: ephemeral0 filesystem: 'ext3' device: 'ephemeral0' partition: 'auto' - label: mylabl2 filesystem: 'ext4' device: '/dev/xvda1' - special: cmd: mkfs -t %(FILESYSTEM)s -L %(LABEL)s %(DEVICE)s filesystem: 'btrfs' device: '/dev/xvdh' # The general format is: # fs_setup: # - label: <LABEL> # filesystem: <FS_TYPE> # device: <DEVICE> # partition: <PART_VALUE> # overwrite: <OVERWRITE> # replace_fs: <FS_TYPE> # # Where: # <LABEL>: The file system label to be used. If set to None, no label is # used. # # <FS_TYPE>: The file system type. It is assumed that the there # will be a "mkfs.<FS_TYPE>" that behaves likes "mkfs". On a standard # Ubuntu Cloud Image, this means that you have the option of ext{2,3,4}, # and vfat by default. # # <DEVICE>: The device name. Special names of 'ephemeralX' or 'swap' # are allowed and the actual device is acquired from the cloud datasource. # When using 'ephemeralX' (i.e. ephemeral0), make sure to leave the # label as 'ephemeralX' otherwise there may be issues with the mounting # of the ephemeral storage layer. # # If you define the device as 'ephemeralX.Y' then Y will be interpetted # as a partition value. However, ephermalX.0 is the _same_ as ephemeralX. # # <PART_VALUE>: # Partition definitions are overwriten if you use the '<DEVICE>.Y' notation. # # The valid options are: # "auto|any": tell cloud-init not to care whether there is a partition # or not. Auto will use the first partition that does not contain a # file system already. In the absence of a partition table, it will # put it directly on the disk. # # "auto": If a file system that matches the specification in terms of # label, type and device, then cloud-init will skip the creation of # the file system. # # "any": If a file system that matches the file system type and device, # then cloud-init will skip the creation of the file system. # # Devices are selected based on first-detected, starting with partitions # and then the raw disk. Consider the following: # NAME FSTYPE LABEL # xvdb # |-xvdb1 ext4 # |-xvdb2 # |-xvdb3 btrfs test # \-xvdb4 ext4 test # # If you ask for 'auto', label of 'test, and file system of 'ext4' # then cloud-init will select the 2nd partition, even though there # is a partition match at the 4th partition. # # If you ask for 'any' and a label of 'test', then cloud-init will # select the 1st partition. # # If you ask for 'auto' and don't define label, then cloud-init will # select the 1st partition. # # In general, if you have a specific partition configuration in mind, # you should define either the device or the partition number. 'auto' # and 'any' are specifically intended for formating ephemeral storage or # for simple schemes. # # "none": Put the file system directly on the device. # # <NUM>: where NUM is the actual partition number. # # <OVERWRITE>: Defines whether or not to overwrite any existing # filesystem. # # "true": Indiscriminately destroy any pre-existing file system. Use at # your own peril. # # "false": If an existing file system exists, skip the creation. # # <REPLACE_FS>: This is a special directive, used for Windows Azure that # instructs cloud-init to replace a file system of <FS_TYPE>. NOTE: # unless you define a label, this requires the use of the 'any' partition # directive. # # Behavior Caveat: The default behavior is to _check_ if the file system exists. # If a file system matches the specification, then the operation is a no-op.
Close