K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / lib / dpkg / info /
server ip : 104.21.89.46

your ip : 172.70.130.184

H O M E


Filename/var/lib/dpkg/info/sudo.postinst
Size1.91 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:50
Last modified11-Feb-2014 03:16
Last accessed06-Jul-2025 22:24
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/bin/sh

set -e

# remove old link

if [ -L /etc/alternatives/sudo ]; then
rm /etc/alternatives/sudo
fi

# complain if no sudoers file is present
if [ ! -f /etc/sudoers ];then
echo "WARNING: /etc/sudoers not present!";
fi

# handle state directory transition from /var/run/sudo to /var/lib/sudo,
# moving any existing content over to avoid re-lecturing existing users
if [ -d "/var/run/sudo" ];then
mkdir -p /var/lib/sudo
(cd /var/run/sudo ; tar cf - .) | (cd /var/lib/sudo ; tar xf -)
rm -rf /var/run/sudo
fi

# make sure sudoers has the correct permissions and owner/group
chown root:root /etc/sudoers
chmod 440 /etc/sudoers

# if we've gotten this far .. remove the saved, unchanged old sudoers file
rm -f /etc/sudoers.pre-conffile

# make sure we have a sudo group

[ -n "`getent group sudo`" ] && exit 0 # we're finished if there is a group sudo:

# start search with gid 27
gid="27"
while [ -n "`getent group $gid | cut -d: -f3`" ];do
gid=`expr $gid + 1`
done


if [ "$gid" -ne "27" ];then
echo "On Debian we normally use gid 27 for 'sudo'."
gname="`getent group 27 | cut -d: -f1`"
echo "However, on your system gid 27 is group '$gname'."
echo ""
echo "Would you like me to stop configuring sudo so that you can change this?";
while true;do
echo -n "(Enter 'yes' to stop, enter to continue): "
read ans
[ "$ans" = "" ] && break
if [ "$ans" = "yes" -o "$ans" = "YES" ];then
echo "'dpkg --pending --configure' will restart the configuration."
exit 1;
fi
echo "Please enter exactly 'yes' to stop, or press the enter key to continue without stopping"
done
fi

echo "Creating group 'sudo' with gid = $gid";
groupadd -g $gid sudo

echo ""

# Automatically added by dh_installinit
if [ -x "/etc/init.d/sudo" ] || [ -e "/etc/init/sudo.conf" ]; then
if [ ! -e "/etc/init/sudo.conf" ]; then
update-rc.d sudo defaults >/dev/null
fi
invoke-rc.d sudo start || exit $?
fi
# End automatically added section