\n'%(k,cgi.escape(repr(d[k]))) for k in keys])
body+='
\n\n'
@@ -1161,14 +1161,14 @@
def response(self):
if not self.response_started:
if not self.php:
- for k,v in self.FILES.items():
- if v.has_key("tmp_file"):
+ for k,v in list(self.FILES.items()):
+ if "tmp_file" in v:
try:
v["tmp_file"].close()
except OSError:
pass
if self.response_gzencode and self.environ.get('HTTP_ACCEPT_ENCODING','').find('gzip')!=-1:
- zbuf=StringIO.StringIO()
+ zbuf=io.StringIO()
zfile=gzip.GzipFile(mode='wb', fileobj=zbuf)
zfile.write(''.join(self.buffer))
zfile.close()
@@ -1216,10 +1216,10 @@
# QWeb WSGI HTTP Server to run any WSGI app
# autorun, run an app as FCGI or CGI otherwise launch the server
#----------------------------------------------------------
-class QWebWSGIHandler(BaseHTTPServer.BaseHTTPRequestHandler):
+class QWebWSGIHandler(http.server.BaseHTTPRequestHandler):
def log_message(self,*p):
if self.server.log:
- return BaseHTTPServer.BaseHTTPRequestHandler.log_message(self,*p)
+ return http.server.BaseHTTPRequestHandler.log_message(self,*p)
def address_string(self):
return self.client_address[0]
def start_response(self,status,headers):
@@ -1237,13 +1237,13 @@
def write(self,data):
try:
self.wfile.write(data)
- except (socket.error, socket.timeout),e:RefactoringTool: Files that were modified:
RefactoringTool: ./ajaxterm/ajaxterm/qweb.py
- print e
+ except (socket.error, socket.timeout) as e:
+ print(e)
def bufferon(self):
if not getattr(self,'wfile_buf',0):
self.wfile_buf=1
self.wfile_bak=self.wfile
- self.wfile=StringIO.StringIO()
+ self.wfile=io.StringIO()
def bufferoff(self):
if self.wfile_buf:
buf=self.wfile
@@ -1251,7 +1251,7 @@
self.write(buf.getvalue())
self.wfile_buf=0
def serve(self,type):
- path_info, parameters, query = urlparse.urlparse(self.path)[2:5]
+ path_info, parameters, query = urllib.parse.urlparse(self.path)[2:5]
environ = {
'wsgi.version': (1,0),
'wsgi.url_scheme': 'http',
@@ -1275,8 +1275,8 @@
'qweb.mode': 'standalone',
}
if path_info:
- environ['PATH_INFO'] = urllib.unquote(path_info)
- for key, value in self.headers.items():
+ environ['PATH_INFO'] = urllib.parse.unquote(path_info)
+ for key, value in list(self.headers.items()):
environ['HTTP_' + key.upper().replace('-', '_')] = value
# Hack to avoid may TCP packets
self.bufferon()
@@ -1289,7 +1289,7 @@
self.serve('GET')
def do_POST(self):
self.serve('GET')
-class QWebWSGIServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
+class QWebWSGIServer(socketserver.ThreadingMixIn, http.server.HTTPServer):
""" QWebWSGIServer
qweb_wsgi_autorun(wsgiapp,ip='127.0.0.1',port=8080,threaded=1)
A WSGI HTTP server threaded or not and a function to automatically run your
@@ -1306,15 +1306,15 @@
calling environement (http-server, FastCGI or CGI).
"""
def __init__(self, wsgiapp, ip, port, threaded=1, log=1):
- BaseHTTPServer.HTTPServer.__init__(self, (ip, port), QWebWSGIHandler)
+ http.server.HTTPServer.__init__(self, (ip, port), QWebWSGIHandler)
self.wsgiapp = wsgiapp
self.threaded = threaded
self.log = log
def process_request(self,*p):
if self.threaded:
- return SocketServer.ThreadingMixIn.process_request(self,*p)
- else:
- return BaseHTTPServer.HTTPServer.process_request(self,*p)
+ return socketserver.ThreadingMixIn.process_request(self,*p)
+ else:
+ return http.server.HTTPServer.process_request(self,*p)
def qweb_wsgi_autorun(wsgiapp,ip='127.0.0.1',port=8080,threaded=1,log=1,callback_ready=None):
if sys.platform=='win32':
fcgi=0
@@ -1323,21 +1323,21 @@
sock = socket.fromfd(0, socket.AF_INET, socket.SOCK_STREAM)
try:
sock.getpeername()
- except socket.error, e:
+ except socket.error as e:
if e[0] == errno.ENOTSOCK:
fcgi=0
- if fcgi or os.environ.has_key('REQUEST_METHOD'):
+ if fcgi or 'REQUEST_METHOD' in os.environ:
import fcgi
fcgi.WSGIServer(wsgiapp,multithreaded=False).run()
else:
if log:
- print 'Serving on %s:%d'%(ip,port)
+ print('Serving on %s:%d'%(ip,port))
s=QWebWSGIServer(wsgiapp,ip=ip,port=port,threaded=threaded,log=log)
if callback_ready:
callback_ready()
try:
s.serve_forever()
- except KeyboardInterrupt,e:
+ except KeyboardInterrupt as e:
sys.excepthook(*sys.exc_info())
#----------------------------------------------------------
@@ -1351,6 +1351,6 @@
body+='\n\n%s\n%s\n\n%s'%(n,'-'*len(n),d)
return body
- print qweb_doc()
+ print(qweb_doc())
#
RefactoringTool: Skipping optional fixer: buffer
RefactoringTool: Skipping optional fixer: idioms
RefactoringTool: Skipping optional fixer: set_literal
RefactoringTool: Skipping optional fixer: ws_comma
RefactoringTool: Refactored ./ajaxterm/ajaxterm/ajaxterm.py
RefactoringTool: Files that were modified:
RefactoringTool: ./ajaxterm/ajaxterm/ajaxterm.py
--- ./ajaxterm/ajaxterm/ajaxterm.py (original)
+++ ./ajaxterm/ajaxterm/ajaxterm.py (refactored)
@@ -52,7 +52,7 @@
"\x1bn": None,
"\x1bo": None,
}
- for k,v in self.esc_seq.items():
+ for k,v in list(self.esc_seq.items()):
if v==None:
self.esc_seq[k]=self.esc_ignore
# regex
@@ -61,7 +61,7 @@
r'\]([^\x07]+)\x07' : self.esc_ignore,
}
self.esc_re=[]
- for k,v in d.items():
+ for k,v in list(d.items()):
self.esc_re.append((re.compile('\x1b'+k),v))
# define csi sequences
self.csi_seq={
@@ -71,7 +71,7 @@
'K': (self.csi_K,[0]),
}
for i in [i[4] for i in dir(self) if i.startswith('csi_') and len(i)==5]:
- if not self.csi_seq.has_key(i):
+ if i not in self.csi_seq:
self.csi_seq[i]=(getattr(self,'csi_'+i),[1])
# Init 0-256 to latin1 and html translation table
self.trl1=""
@@ -385,7 +385,7 @@
try:
fdl=[int(i) for i in os.listdir('/proc/self/fd')]
except OSError:
- fdl=range(256)
+ fdl=list(range(256))
for i in [i for i in fdl if i>2]:
try:
os.close(i)
@@ -423,12 +423,12 @@
def run(self):
return self.alive
def fds(self):
- return self.proc.keys()
+ return list(self.proc.keys())
def proc_kill(self,fd):
if fd in self.proc:
self.proc[fd]['time']=0
t=time.time()
- for i in self.proc.keys():
+ for i in list(self.proc.keys()):
t0=self.proc[i]['time']
if (t-t0)>120:
try:
@@ -465,7 +465,7 @@
self.proc_read(fd)
if len(i):
time.sleep(0.002)
- for i in self.proc.keys():
+ for i in list(self.proc.keys()):
try:
os.close(i)
os.kill(self.proc[i]['pid'],signal.SIGTERM)
@@ -549,16 +549,16 @@
file(o.pidfile,'w+').write(str(pid)+'\n')
except:
pass
- print 'AjaxTerm at http://localhost:%s/ pid: %d' % (o.port,pid)
+ print('AjaxTerm at http://localhost:%s/ pid: %d' % (o.port,pid))
sys.exit(0)
else:
- print 'AjaxTerm at http://localhost:%s/' % o.port
+ print('AjaxTerm at http://localhost:%s/' % o.port)
at=AjaxTerm(o.cmd,o.index_file)
# f=lambda:os.system('firefox http://localhost:%s/&'%o.port)
# qweb.qweb_wsgi_autorun(at,ip='localhost',port=int(o.port),threaded=0,log=o.log,callback_ready=None)
try:
qweb.QWebWSGIServer(at,ip='localhost',port=int(o.port),threaded=0,log=o.log).serve_forever()
- except KeyboardInterrupt,e:
+ except KeyboardInterrupt as e:
sys.excepthook(*sys.exc_info())
at.multi.die()
RefactoringTool: Skipping optional fixer: buffer
RefactoringTool: Skipping optional fixer: idioms
RefactoringTool: Skipping optional fixer: set_literal
RefactoringTool: Skipping optional fixer: ws_comma
RefactoringTool: Refactored ./webmin/acme_tiny.py
RefactoringTool: Files that were modified:
RefactoringTool: ./webmin/acme_tiny.py
--- ./webmin/acme_tiny.py (original)
+++ ./webmin/acme_tiny.py (refactored)
@@ -4,7 +4,7 @@
try:
from urllib.request import urlopen, Request # Python 3
except ImportError:
- from urllib2 import urlopen, Request # Python 2
+ from urllib.request import urlopen, Request # Python 2
DEFAULT_CA = "https://acme-v02.api.letsencrypt.org" # DEPRECATED! USE DEFAULT_DIRECTORY_URL INSTEAD
DEFAULT_DIRECTORY_URL = "https://acme-v02.api.letsencrypt.org/directory"
+ pathfix.py -pni '/usr/bin/python3 -s' webmin/acme_tiny.py ajaxterm/ajaxterm/ajaxterm.py ajaxterm/ajaxterm/configure
webmin/acme_tiny.py: updating
ajaxterm/ajaxterm/ajaxterm.py: updating
ajaxterm/ajaxterm/configure: updating
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.NhyCsm
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd webmin-1.960
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.2o6Elm
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ '[' 1 -eq 1 ']'
+ '[' /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64 '!=' / ']'
+ rm -rf /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64
++ dirname /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT
+ mkdir /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64
+ cd webmin-1.960
+ '[' 1 -eq 1 ']'
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64//etc/rc.d/init.d
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/bin
+ find -type f -print0
+ xargs -0 chmod a+r
+ find -type d -print0
+ xargs -0 chmod a+rx
+ cp -a LICENCE LICENCE.ja README.md WebminCore.pm WebminUI acl acl_security.pl adsl-client ajaxterm apache at authentic-theme autorpm backup backup-config bacula-backup bandwidth batch-apache batch-dns bin bind8 blue-theme bsdexports bsdfdisk calamaris cdbackup change-user changepass.pl chooser.cgi cluster-copy cluster-cron cluster-passwd cluster-shell cluster-software cluster-useradmin cluster-usermin cluster-webmin config-aix config-cobalt-linux config-coherent-linux config-corel-linux config-debian-linux config-freebsd config-generic-linux config-gentoo-linux config-hpux config-irix config-lib.pl config-macos config-mageia config-mandrake-linux config-msc-linux config-netbsd config-open-linux config-openbsd config-openmamba-linux config-openserver config-osf1 config-pardus-linux config-redhat-linux config-slackware-linux config-sol-linux config-solaris config-suse-linux config-syno-linux config-trustix-linux config-turbo-linux config-united-linux config-unixware config-windows config.cgi config_save.cgi copyconfig.pl cpan create-module.pl cron custom date_chooser.cgi defaultacl defaulttheme dfsadmin dhcpd dovecot download entities_map.txt exim exports fail2ban fastrpc.cgi favicon.ico fdisk feedback.cgi feedback_form.cgi fetchmail filemin filter firewall firewall6 firewalld format fp2k fsdump gray-theme group_chooser.cgi grub heartbeat help.cgi hpuxexports htaccess-htpasswd i4lctrl-0.6.7 idmapd images index.cgi init inittab install-module.pl install-type ipfilter ipfw ipsec iscsi-client iscsi-server iscsi-target iscsi-tgtd javascript-lib.pl kannel krb5 lang lang_list.txt ldap ldap-client ldap-server ldap-useradmin logrotate logviewer lpadmin lvm mailboxes mailcap maketemp.pl man mime.types miniserv.pem miniserv.pl module_chooser.cgi mon mount mysql net nettools newmods.pl nis openslp openvpn os_list.txt oschooser.pl package-updates pam pam_login.cgi pap passwd password_change.cgi password_form.cgi perlpath.pl phpini postfix postgresql ppp-client pptp-client proc procmail proftpd qmailadmin quota raid rbac record-login.pl record-logout.pl rinetd robots.txt rpc.cgi run-postinstalls.pl run-uninstalls.pl sa-admin safeacl samba sarg sendmail servers session_login.cgi setup.bat setup.pl setup.sh sgiexports shell shorewall shorewall6 smart-status smf software spam squid squidguard ssh sshd status stunnel switch_skill.cgi switch_user.cgi syslog syslog-ng system-status tcpwrappers telnet thirdparty.pl time tunnel ui-lib.pl unauthenticated update-from-repo.sh updown upload uptracker.cgi user_chooser.cgi useradmin usermin vacationadm version vgetty vnc web-lib-funcs.pl web-lib.pl webmin webmin-daemon webmin-debian-pam webmin-gentoo-init webmin-init webmin-pam webmin-search-lib.pl webmin_search.cgi webmincron webminlog xinetd xmlrpc.cgi zones /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin
+ install -m755 /home/iurt/rpmbuild/SOURCES/webmin.initscript /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64//etc/rc.d/init.d/webmin
+ install -m755 /home/iurt/rpmbuild/SOURCES/webmin-postinstallscript.sh /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/postinstall.sh
+ install -m755 /home/iurt/rpmbuild/SOURCES/webmin /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/bin
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64//etc/pam.d
+ install -m755 /home/iurt/rpmbuild/SOURCES/webmin.pam-new /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64//etc/pam.d/webmin
+ rm -rf /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/vacationadm/CVS /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/vacationadm/help/CVS /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/vacationadm/images/CVS /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/vacationadm/lang/CVS
++ find /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64 -type f -name .cvsignore
+ rm -f /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/i4lctrl-0.6.7/etc/.cvsignore /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/i4lctrl-0.6.7/images/.cvsignore
+ for i in /usr/share/webmin/caldera/images/letters/254.gif /usr/share/webmin/i4lctrl-0.6.7/lang/de /usr/share/webmin/caldera/images/letters/255.gif
+ '[' -f /usr/share/webmin/caldera/images/letters/254.gif ']'
+ for i in /usr/share/webmin/caldera/images/letters/254.gif /usr/share/webmin/i4lctrl-0.6.7/lang/de /usr/share/webmin/caldera/images/letters/255.gif
+ '[' -f /usr/share/webmin/i4lctrl-0.6.7/lang/de ']'
+ for i in /usr/share/webmin/caldera/images/letters/254.gif /usr/share/webmin/i4lctrl-0.6.7/lang/de /usr/share/webmin/caldera/images/letters/255.gif
+ '[' -f /usr/share/webmin/caldera/images/letters/255.gif ']'
+ echo rpm
+ echo blue-theme
+ install -d -m 0755 /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/icons/large
+ install -d -m 0755 /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/icons/mini
+ install -m 0644 /home/iurt/rpmbuild/SOURCES/webmin-16.png /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/icons/mini/webmin.png
+ install -m 0644 /home/iurt/rpmbuild/SOURCES/webmin-32.png /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/icons/webmin.png
+ install -m 0644 /home/iurt/rpmbuild/SOURCES/webmin-16.png /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/icons/large/webmin.png
+ install -d /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/applications
+ cat
+ install -d /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/etc/logrotate.d
+ install -m 0644 /home/iurt/rpmbuild/SOURCES/webmin.logrotate /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/etc/logrotate.d/webmin
+ mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/lib/tmpfiles.d
+ cat
+ /usr/lib/rpm/check-buildroot
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/compress_files .xz
+ '[' -n '' ']'
+ /usr/share/spec-helper/relink_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_perl
+ '[' -n '' ']'
+ /usr/share/spec-helper/lib_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/gprintify
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_mo
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_pamd
Fixing pam.d config files...done
+ '[' -n '' ']'
+ /usr/share/spec-helper/remove_info_dir
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_eol
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_desktop_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_elf_files
+ /usr/lib/rpm/brp-strip /usr/bin/strip
+ /usr/lib/rpm/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump
+ /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip
+ /usr/lib/rpm/brp-strip-shared /usr/bin/strip
find: cannot fork: Resource temporarily unavailable
+ /usr/lib/rpm/brp-python-bytecompile /usr/bin/python3 1 1
/usr/lib/rpm/brp-python-bytecompile: fork: retry: Resource temporarily unavailable
/home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/ajaxterm/ajaxterm/qweb.py
/home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/ajaxterm/ajaxterm/ajaxterm.py
/home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/webmin/acme_tiny.py
+ /usr/lib/rpm/brp-python-hardlink
+ /usr/lib/rpm/redhat/brp-mangle-shebangs
*** WARNING: ./usr/share/webmin/sendmail/mailers-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/aliases-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/boxes-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/virtusers-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/features-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/access-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/sendmail-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/generics-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/domain-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sendmail/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/package-updates/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfw/ipfw-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfw/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfw/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/squid-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/parser-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/squid/cgi_args.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/sf_cvs.sh from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/rcpw from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/postinst.sh from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/cpw from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/makewbm.sh from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/setup.sh from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/PREDIST.sh from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/i4lctrl-0.6.7/POSTDIST.sh from /bin/bash to #!/usr/bin/bash
*** WARNING: ./usr/share/webmin/time/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/time/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_deny.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_mail.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_tally.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_nologin.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_shells.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_wheel.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_motd.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_filter.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_securetty.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_stack.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_pwdb.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_listfile.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_permit.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/template.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_time.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_env.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_rhosts_auth.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_rootok.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_group.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_cracklib.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pam/pam_unix.so.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/blue-theme/theme.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-9.2-ALL-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/debian-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-9.1-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-8.0-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/slackware-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/mandrake-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/cobalt-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/netbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/openmamba-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/slackware-linux-9.1-ALL-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/cygwin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/open-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/trustix-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/windows-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/gentoo-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/unixware-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/redhat-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/pardus-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/msc-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-8.2-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/net-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/turbo-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/coherent-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/united-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/net/suse-linux-9.0-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/tcpwrappers/tcpwrappers-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/tcpwrappers/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/tcpwrappers/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/phpini-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/phpini/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-usermin/cluster-usermin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-copy/cluster-copy-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-copy/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-copy/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dovecot/dovecot-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dovecot/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dovecot/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dovecot/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dovecot/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/openserver-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/irix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/at-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/at/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ssh/config.info is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ssh/config is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ssh/module.info is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-useradmin/cluster-useradmin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-useradmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/newmods.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/javascript-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/krb5/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/krb5/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/krb5/krb5-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/krb5/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/firewall6-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/debian-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/mandrake-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/firewall4-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/firewall-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/trustix-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/gentoo-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/redhat-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall/coherent-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/init-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/init/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/grub/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/grub/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/grub/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/grub/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/grub/grub-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exim/exim-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exim/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/openserver-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/irix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/netbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/md5-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/user-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/aix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/unixware-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/useradmin/osf1-lib.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/webmin-init from /bin/sh to #!/usr/bin/sh
*** WARNING: ./usr/share/webmin/iscsi-tgtd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-tgtd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/updown/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/updown/updown-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/updown/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/updown/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pptp-client/pptp-client-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pptp-client/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pptp-client/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pptp-client/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pptp-client/secrets-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-passwd/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-passwd/cluster-passwd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-passwd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/autorpm/module.info is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/irix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/netbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/quota-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/unixware-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/quota/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/tunnel/tunnel-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/records-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/bind8-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bind8/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logviewer/config.info is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logviewer/config.info.ru_SU is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/pkgadd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/ipkg-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/emerge-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/cygwin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/rhn-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/rpm-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/debian-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/yum-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/aix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/software-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/urpmi-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/csw-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/slackware-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/msi-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/apt-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/software/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/gray-theme/theme.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/ldap-useradmin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-useradmin/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bsdexports/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bsdexports/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bsdexports/bsdexports-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-target/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-target/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/heartbeat/heartbeat-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/heartbeat/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/heartbeat/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/heartbeat/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dfsadmin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dfsadmin/dfs-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dfsadmin/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dfsadmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/vgetty/vgetty-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/vgetty/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/vgetty/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/vgetty/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ui-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/usermin/usermin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/ldap-server-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-server/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/custom-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/custom/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shell/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shell/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shell/shell-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/lvm-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lvm/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfilter/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfilter/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfilter/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipfilter/ipfilter-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/xinetd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/xinetd/config_info.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall6/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall6/shorewall6-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall6/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall6/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall6/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/raid/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/raid/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/raid/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/raid/raid-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/raid/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/config-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/man/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/man/man-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/man/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/backup-config/backup-config-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/backup-config/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/backup-config/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/backup-config/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/htaccess-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/md5-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/htpasswd-file-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/htaccess-htpasswd/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/debian-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/slackware-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/mandrake-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/openmamba-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/md5-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/open-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/trustix-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/aix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/switch-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/redhat-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/msc-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/suse-linux-8.2-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/suse-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/nis-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/coherent-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/united-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/nis/suse-linux-9.0-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/maketemp.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-software/cluster-software-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openvpn/openvpn-ssl.cnf is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openvpn/config is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openvpn/config-*-linux is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/openvpn/br_scripts/bridge_end from /bin/bash to #!/usr/bin/bash
mangling shebang in /usr/share/webmin/openvpn/br_scripts/bridge_start from /bin/bash to #!/usr/bin/bash
*** WARNING: ./usr/share/webmin/openvpn/module.info is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openvpn/config-freebsd is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openvpn/openvpn-lib.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/postinstall.sh from /bin/bash to #!/usr/bin/bash
*** WARNING: ./usr/share/webmin/web-lib-funcs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/spam-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/spam-amavis-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/spam/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-shell/cluster-shell-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-shell/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/firewall6-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/debian-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/mandrake-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/firewall4-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/firewall-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/trustix-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/gentoo-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/redhat-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewall6/coherent-linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/passwd/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/passwd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/passwd/passwd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/dhcpd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/es is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/nl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/pt_BR is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/de is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/sv is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/da is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/en is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/tr is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/sk is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/ca is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/pt is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/no is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/fr is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/lang/fa is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/dhcpd/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bandwidth/bandwidth-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bandwidth/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bandwidth/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bandwidth/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bandwidth/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/aliases-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/boxes-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/postfix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postfix/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailcap/mailcap-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailcap/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailcap/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailcap/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/boxes-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/qmailadmin/qmail-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/syslog-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin-search-lib.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/update-from-repo.sh from /usr/bin/env bash to #!/usr/bin/bash
*** WARNING: ./usr/share/webmin/format/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/format/format-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logrotate/logrotate-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logrotate/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logrotate/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logrotate/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/logrotate/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/pap-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/pap/secrets-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall/shorewall-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/shorewall/log_parser.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/setup.sh from /bin/sh to #!/usr/bin/sh
*** WARNING: ./usr/share/webmin/sshd/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sshd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sshd/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sshd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sshd/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/boxes-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/folders-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/mailboxes-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mailboxes/config_info.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sgiexports/sgiexports-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sgiexports/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/solaris-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/irix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/redhat-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/printconf-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/lprng-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/old-caldera-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/suse-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/lpadmin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/hpux-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/caldera-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/aix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/unixware-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/webmin-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/irix-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/cups-driver.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/lpadmin/cgi_args.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/lpadmin/base_coas_driver from /bin/sh to #!/usr/bin/sh
*** WARNING: ./usr/share/webmin/lpadmin/cups-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/zones/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/zones/forms-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/zones/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/zones/zones-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/change-user/change-user-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/change-user/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bsdfdisk/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/letsencrypt-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/gnupg-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/webmin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webmin/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openslp/slp-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openslp/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/openslp/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fdisk/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fdisk/fdisk-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fdisk/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fdisk/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fdisk/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/smart-status/status_monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/smart-status/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/smart-status/smart-status-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/hpuxexports/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/hpuxexports/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/hpuxexports/hpuxexports-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/hpuxexports/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/hpuxexports/exports-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/rbac/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/rbac/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/rbac/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/rbac/rbac-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/rbac/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/stunnel/stunnel-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/stunnel/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/stunnel/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/stunnel/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/stunnel/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_autoindex.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_rewrite.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authz_owner.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_php5.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_info.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_vhost_alias.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_userdir.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_suexec.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authz_dbm.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_fastcgi.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_auth_digest.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/core.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_dir.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/worker.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/auth-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_speling.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_auth.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_auth_basic.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/browsermatch.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_actions.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_mime.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authz_host.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_mem_cache.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/prefork.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_access.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_fcgid.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mpm_netware.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_mpm_prefork.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_auth_dbm.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_status.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authn_file.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/perchild.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/autoindex.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_cgid.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_cache.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_ruby.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_include.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_dav.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_cern_meta.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_perl.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authz_groupfile.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_php4.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/apache-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_log_agent.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_cgi.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_browser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_mime_magic.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_apachessl.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_php3.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_asis.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_proxy.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_alias.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_disk_cache.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_php7.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_php.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/cache.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_bandwidth.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_setenvif.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mpm_winnt.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_log_common.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_env.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_proxy_balancer.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_log_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_authn_dbm.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_negotiation.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_ssl.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_imap.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_log_referer.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/apache/mod_ext_filter.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webminlog/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webminlog/webminlog-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/webminlog/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/cron-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/config.info.hu.UTF-8 is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cron/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/procmail/procmail-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/procmail/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/procmail/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/procmail/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/procmail/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/proftpd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_auth.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_readme.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_ls.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_ldap.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_unixpw.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_pam.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_log.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_core.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proftpd/mod_site.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bacula-backup/bacula-backup-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bacula-backup/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/bacula-backup/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/irix-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fsdump/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/adsl-client/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/adsl-client/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/adsl-client/adsl-client-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/adsl-client/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/adsl-client/secrets-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog-ng/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog-ng/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog-ng/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/syslog-ng/syslog-ng-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exports/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exports/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exports/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exports/exports-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/exports/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/sysv-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/osf-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/windows-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/proc-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/proc/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-client/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-client/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-client/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/thirdparty.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sarg/sarg-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sarg/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sarg/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/sarg/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-webmin/cluster-webmin-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/md5-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/acl/acl-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipsec/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipsec/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipsec/ipsec-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ipsec/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/apache-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/traffic-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/alive-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/portsentry-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/jabber-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/sensors-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/change-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/nfs-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/rssh-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/hostsentry-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/ftp-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/dns-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/dnsadmin-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/cfengine-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/postgresql-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/http-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/consume-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/ping-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/mysql-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/fail2ban-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/status_monitor_api.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/exec-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/status-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/dhcpd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/proftpd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/samba-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/file-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/mon-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/query-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/proc-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/tcp-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/sendmail-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/load-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/mailq-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/postfix-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/xinetd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/dovecot-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/nut-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/sslcert-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/space-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/memory-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/oldfile-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/sshd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/webmin-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/iface-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/inetd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/slapd-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/squid-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/bind8-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/raid-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/qmailadmin-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/usermin-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/status/ldap-monitor.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewalld/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/firewalld/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/smbhash.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/samba-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/samba/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fail2ban/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fail2ban/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fail2ban/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fail2ban/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/web-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/telnet/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cpan/postinstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cpan/cpan-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cpan/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mon/mon-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mon/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mon/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mon/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/view-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/config-syno-linux is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/mysql-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/syslog_logs.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mysql/config_info.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/feedback_files.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/fetchmail-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/fetchmail/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/filter/aliases-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/filter/filter-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/filter/autoreply-file-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-client/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-client/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-client/ldap-client-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-client/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ldap-client/switch-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-server/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-server/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/iscsi-server/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/inittab/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/inittab/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/inittab/log_parser.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/bin/enable-proxy from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/disable-proxy from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/update-devel from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/disable-twofactor from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/webmin from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/list-config from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/language-manager from /usr/bin/env perl to #!/usr/bin/perl
mangling shebang in /usr/share/webmin/bin/set-config from /usr/bin/env perl to #!/usr/bin/perl
*** WARNING: ./usr/share/webmin/cluster-cron/cluster-cron-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-cron/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/cluster-cron/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ppp-client/ppp-client-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ppp-client/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ppp-client/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ppp-client/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/ppp-client/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/idmapd/idmapd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/idmapd/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/idmapd/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/idmapd/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/system-status/system-status-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/system-status/postinstall.pl is executable but has no shebang, removing executable bit
mangling shebang in /usr/share/webmin/authentic-theme/theme-update.sh from /usr/bin/env bash to #!/usr/bin/bash
*** WARNING: ./usr/share/webmin/servers/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/servers-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/uninstall.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/servers/config_info.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/solaris-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/hpux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/netbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/macos-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/freebsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/mount-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/openbsd-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/linux-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/cgi_args.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/mount/osf1-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/view-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/acl_security.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/useradmin_update.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/postgresql-lib.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/install_check.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/backup_config.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/cpan_modules.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/log_parser.pl is executable but has no shebang, removing executable bit
*** WARNING: ./usr/share/webmin/postgresql/cgi_args.pl is executable but has no shebang, removing executable bit
mangling shebang in /etc/rc.d/init.d/webmin from /bin/sh to #!/usr/bin/sh
*** WARNING: ./etc/pam.d/webmin is executable but has no shebang, removing executable bit
Processing files: webmin-1.960-1.mga8.noarch
Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.S9nflk
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd webmin-1.960
+ DOCDIR=/home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/doc/webmin
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/doc/webmin
+ cp -pr README.md /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/doc/webmin
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%license): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.ok32Xj
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd webmin-1.960
+ LICENSEDIR=/home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/licenses/webmin
+ export LC_ALL=C
+ LC_ALL=C
+ export LICENSEDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/licenses/webmin
+ cp -pr LICENCE /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/licenses/webmin
+ RPM_EC=0
++ jobs -p
+ exit 0
pcregrep: line 18 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/mailboxes/xinha/XinhaCore.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 18 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/mailboxes/xinha/XinhaCore.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 2 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/bundle.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 2 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/bundle.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 7 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/filemin/unauthenticated/jquery/jquery-ui.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 7 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/filemin/unauthenticated/jquery/jquery-ui.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 5 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/filemin/unauthenticated/jquery/jquery.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 5 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/filemin/unauthenticated/jquery/jquery.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 3 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/ckeditor/plugins/emojione/libs/emojione/emojione.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 3 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/ckeditor/plugins/emojione/libs/emojione/emojione.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 6 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/extensions/file-manager/file-manager.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 6 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/extensions/file-manager/file-manager.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 9 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/jquery.fancytree.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 9 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/jquery.fancytree.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/extensions/mail/mail.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/extensions/mail/mail.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/jquery.jspanel.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/jquery.jspanel.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/quill.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
pcregrep: line 1 of file /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64/usr/share/webmin/authentic-theme/unauthenticated/js/quill.min.js is too long for the internal buffer
pcregrep: check the --buffer-size option
Provides: application() application(mageia-webmin.desktop) config(webmin) = 1.960-1.mga8 webmin = 1.960-1.mga8 webmin-1.960
Requires(interp): /bin/sh /bin/sh /bin/sh
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires(pre): chkconfig coreutils findutils grep initscripts perl-Authen-PAM perl-Net_SSLeay rpm-helper sed
Requires(post): /bin/sh systemd >= 195
Requires(preun): /bin/sh
Requires(postun): /bin/sh
Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64
Wrote: /home/iurt/rpmbuild/RPMS/noarch/webmin-1.960-1.mga8.noarch.rpm
Executing(%clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.6nQjdm
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ cd webmin-1.960
+ /usr/bin/rm -rf /home/iurt/rpmbuild/BUILDROOT/webmin-1.960-1.mga8.x86_64
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(--clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.Dqnenl
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD
+ rm -rf webmin-1.960
+ RPM_EC=0
++ jobs -p
+ exit 0
D: [iurt_root_command] Success!