#0x2525
Linux debian-2gb-nbg1 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
  SOFT : Apache/2.4.62 (Debian) PHP : 8.2.28
/lib/cloud-init/
162.55.61.15

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
ds-identify 54.407 KB -rwxr-xr-x 2022-11-23 21:17 R E G D
hook-hotplug 0.596 KB -rwxr-xr-x 2022-11-23 21:17 R E G D
uncloud-init 4.02 KB -rwxr-xr-x 2022-11-23 21:17 R E G D
write-ssh-key-fingerprints 1.924 KB -rwxr-xr-x 2022-11-23 21:17 R E G D
REQUEST EXIT
#!/bin/bash # This file is part of cloud-init. See LICENSE file for license information. # This script checks if cloud-init has hotplug hooked and if # cloud-init has finished; if so invoke cloud-init hotplug-hook is_finished() { [ -e /run/cloud-init/result.json ] } if is_finished; then # open cloud-init's hotplug-hook fifo rw exec 3<>/run/cloud-init/hook-hotplug-cmd env_params=( --subsystem="${SUBSYSTEM}" handle --devpath="${DEVPATH}" --udevaction="${ACTION}" ) # write params to cloud-init's hotplug-hook fifo echo "${env_params[@]}" >&3 fi