⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
sbin
/
View File Name :
lxd
#!/bin/sh SNAP_BIN="/snap/bin/${0##*/}" if [ ! -f "${SNAP_BIN}" ]; then # If there is a terminal connected to stdin and stdout, ask for confirmation before # installing the needed snap(s) as it might take a while. if [ -t 0 ] && [ -t 1 ]; then echo "Would you like to install LXD snap now (Y/n)? " >&2 read -r answer if [ "${answer:-y}" != "y" ] && [ "${answer:-y}" != "Y" ]; then exit 1 fi fi if [ ! -e "/run/lxd-installer.socket" ]; then echo -n "Waiting for lxd-installer.socket to start" >&2 for _ in $(seq 10); do sleep 1 [ -e "/run/lxd-installer.socket" ] && break echo -n . >&2 done echo " done" >&2 fi if [ ! -w "/run/lxd-installer.socket" ]; then echo "Unable to trigger the installation of the LXD snap." >&2 echo "Please make sure you're a member of the 'lxd' system group." >&2 exit 1 fi echo "Installing LXD snap, please be patient." >&2 python3 -c 'import socket; s=socket.socket(socket.AF_UNIX); s.connect("/run/lxd-installer.socket"); s.send(b"x"); s.recv(1)' >&2 for _ in $(seq 90); do sleep 1 [ -x "${SNAP_BIN}" ] && break done fi exec "$SNAP_BIN" "$@"