File manager - Edit - /home/autoph/public_html/ltms-upload/plugins/dropzone/min/profile.tar
Back
etc/profile 0000644 00000006307 15025171310 0006703 0 ustar 00 # /etc/profile # System wide environment and startup programs, for login setup # Functions and aliases go in /etc/bashrc # It's NOT a good idea to change this file unless you know what you # are doing. It's much better to create a custom.sh shell script in # /etc/profile.d/ to make custom changes to your environment, as this # will prevent the need for merging in future updates. pathmunge () { case ":${PATH}:" in *:"$1":*) ;; *) if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi esac } if [ -x /usr/bin/id ]; then if [ -z "$EUID" ]; then # ksh workaround EUID=`/usr/bin/id -u` UID=`/usr/bin/id -ru` fi USER="`/usr/bin/id -un`" LOGNAME=$USER MAIL="/var/spool/mail/$USER" fi # Path manipulation if [ "$EUID" = "0" ]; then pathmunge /usr/sbin pathmunge /usr/local/sbin else pathmunge /usr/local/sbin after pathmunge /usr/sbin after fi HOSTNAME=`/usr/bin/hostname 2>/dev/null` HISTSIZE=1000 if [ "$HISTCONTROL" = "ignorespace" ] ; then export HISTCONTROL=ignoreboth else export HISTCONTROL=ignoredups fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL # By default, we want umask to get set. This sets it for login shell # Current threshold for system reserved uid/gids is 200 # You could check uidgid reservation validity in # /usr/share/doc/setup-*/uidgid file if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then umask 002 else umask 022 fi for i in /etc/profile.d/*.sh /etc/profile.d/sh.local ; do if [ -r "$i" ]; then if [ "${-#*i}" != "$-" ]; then . "$i" else . "$i" >/dev/null fi fi done unset i unset -f pathmunge #cPanel Added User Commands -- BEGIN # Insert an entry into the PATH after all of the user's home directory paths. PATH="$(/usr/local/cpanel/3rdparty/bin/perl -e 'print join ":", map { ( ( !/^\Q$ENV{HOME}\E/ && !$seen++ && $_ ne $ARGV[0] ? @ARGV : () ), $_ ) } split /:/, $ENV{PATH};' /usr/local/cpanel/3rdparty/lib/path-bin)" export PATH #cPanel Added User Commands -- END #cPanel Added local::lib -- BEGIN LOCALLIBUSER=$USER if [ -e "/usr/bin/whoami" ]; then LOCALLIBUSER="$(/usr/bin/whoami)" fi if [ "$LOCALLIBUSER" != "root" -a -e "/var/cpanel/users/$LOCALLIBUSER" ]; then eval $(perl -Mlocal::lib >/dev/null 2>&1) fi #cPanel Added local::lib -- END #cPanel Added Limit Protections -- BEGIN #unlimit so we can run the whoami ulimit -n 4096 -u 14335 -m unlimited -d unlimited -s 8192 -c 1000000 -v unlimited 2>/dev/null LIMITUSER=$USER if [ -e "/usr/bin/whoami" ]; then LIMITUSER=$(/usr/bin/whoami) fi # Limit the user only if we are not root and are a regular user (UID greater # than or equal to UID_MIN). if [ "$LIMITUSER" != "root" ] && ! id -Gn | grep -qsP '(^| )(wheel|sudo)( |$)' && [ "$(id -u)" -ge "$( (grep -s '^UID_MIN' /etc/login.defs || echo 'x 500') | awk '{print $2}')" ] then ulimit -n 100 -u 35 -m 200000 -d 200000 -s 8192 -c 200000 -v unlimited 2>/dev/null else ulimit -n 4096 -u 14335 -m unlimited -d unlimited -s 8192 -c 1000000 -v unlimited 2>/dev/null fi #cPanel Added Limit Protections -- END metadata_profile_template.profile 0000444 00000001474 15025216466 0013334 0 ustar 00 # This is a metadata profile template for the LVM2 system. # # It contains all configuration settings that are customizable by metadata # profiles. To create a new metadata profile, select the settings you want # to customize and add them in a new file named <profile_name>.profile. # Then install the new profile in a directory as defined by config/profile_dir # setting found in /etc/lvm/lvm.conf file. # # Metadata profiles can be referenced by using the --metadataprofile LVM2 # command line option. # # Refer to 'man lvm.conf' for further information about profiles and # general configuration file layout. # allocation { thin_pool_zero=1 thin_pool_discards="passdown" thin_pool_chunk_size_policy="generic" # thin_pool_chunk_size=128 } activation { thin_pool_autoextend_threshold=100 thin_pool_autoextend_percent=20 } lvmdbusd.profile 0000444 00000004405 15025216466 0007756 0 ustar 00 # # DO NOT EDIT THIS FILE! # # LVM configuration profile used by lvmdbusd daemon. # # This sets up LVM to produce output in the most suitable format for processing # by lvmdbusd daemon which utilizes LVM shell to execute LVM commands. # # Do not edit this file in any way. This profile is distributed together with # lvmdbusd and it contains configuration that is important for lvmdbusd to # cooperate and interface with LVM correctly. # global { # use bytes for expected and deterministic output units=b # no need for suffix if we have units set suffix=0 } report { compact_output=0 compact_output_cols="" binary_values_as_numeric=0 # time in number of seconds since the Epoch time_format="%s" mark_hidden_devices=1 # lvmdbusd expects JSON output output_format=json # *_cols_full for lvm fullreport's fields which lvmdbusd relies on to update its state vgs_cols_full="vg_name,vg_uuid,vg_fmt,vg_size,vg_free,vg_sysid,vg_extent_size,vg_extent_count,vg_free_count,vg_profile,max_lv,max_pv,pv_count,lv_count,snap_count,vg_seqno,vg_mda_count,vg_mda_free,vg_mda_size,vg_mda_used_count,vg_attr,vg_tags" pvs_cols_full="pv_name,pv_uuid,pv_fmt,pv_size,pv_free,pv_used,dev_size,pv_mda_size,pv_mda_free,pv_ba_start,pv_ba_size,pe_start,pv_pe_count,pv_pe_alloc_count,pv_attr,pv_tags,vg_name,vg_uuid" lvs_cols_full="lv_uuid,lv_name,lv_path,lv_size,vg_name,pool_lv_uuid,pool_lv,origin_uuid,origin,data_percent,lv_attr,lv_tags,vg_uuid,lv_active,data_lv,metadata_lv,lv_parent,lv_role,lv_layout" pvsegs_cols_full="pvseg_start,pvseg_size,segtype,pv_uuid,lv_uuid,pv_name" segs_cols_full="seg_pe_ranges,segtype,lv_uuid" vgs_sort_full="vg_name" pvs_sort_full="pv_name" lvs_sort_full="vg_name,lv_name" pvsegs_sort_full="pv_uuid,pvseg_start" segs_sort_full="lv_uuid,seg_start" } log { # lvmdbusd relies on command log report to inspect LVM command's execution status report_command_log=1 # display only outermost LVM shell-related log that lvmdbusd inspects first after LVM command execution (it calls 'lastlog' for more detailed log afterwards if needed) command_log_selection="log_context=shell" command_log_cols="log_seq_num,log_type,log_context,log_object_type,log_object_name,log_object_id,log_object_group,log_object_group_id,log_message,log_errno,log_ret_code" command_log_sort="log_seq_num" } cache-smq.profile 0000444 00000000523 15025216466 0007774 0 ustar 00 # Demo configuration 'smq' cache policy # # The stochastic multi-queue (smq) policy addresses some of the problems # with the multiqueue (mq) policy and uses less memory. # allocation { cache_pool_chunk_size = 64 cache_mode = "writethrough" cache_policy = "smq" cache_settings { # currently no settings for "smq" policy } } command_profile_template.profile 0000444 00000005714 15025216466 0013173 0 ustar 00 # This is a command profile template for the LVM2 system. # # It contains all configuration settings that are customizable by command # profiles. To create a new command profile, select the settings you want # to customize and add them in a new file named <profile_name>.profile. # Then install the new profile in a directory as defined by config/profile_dir # setting found in /etc/lvm/lvm.conf file. # # Command profiles can be referenced by using the --commandprofile option then. # # Refer to 'man lvm.conf' for further information about profiles and # general configuration file layout. # allocation { cache_mode="writethrough" cache_settings { } } log { report_command_log=0 command_log_sort="log_seq_num" command_log_cols="log_seq_num,log_type,log_context,log_object_type,log_object_name,log_object_id,log_object_group,log_object_group_id,log_message,log_errno,log_ret_code" command_log_selection="!(log_type=status && message=success)" } global { units="h" si_unit_consistency=1 suffix=1 lvdisplay_shows_full_device_path=0 } report { output_format="basic" compact_output=0 compact_output_cols="" aligned=1 buffered=1 headings=1 separator=" " list_item_separator="," prefixes=0 quoted=1 columns_as_rows=0 binary_values_as_numeric=0 time_format="%Y-%m-%d %T %z" devtypes_sort="devtype_name" devtypes_cols="devtype_name,devtype_max_partitions,devtype_description" devtypes_cols_verbose="devtype_name,devtype_max_partitions,devtype_description" lvs_sort="vg_name,lv_name" lvs_cols="lv_name,vg_name,lv_attr,lv_size,pool_lv,origin,data_percent,metadata_percent,move_pv,mirror_log,copy_percent,convert_lv" lvs_cols_verbose="lv_name,vg_name,seg_count,lv_attr,lv_size,lv_major,lv_minor,lv_kernel_major,lv_kernel_minor,pool_lv,origin,data_percent,metadata_percent,move_pv,copy_percent,mirror_log,convert_lv,lv_uuid,lv_profile" vgs_sort="vg_name" vgs_cols="vg_name,pv_count,lv_count,snap_count,vg_attr,vg_size,vg_free" vgs_cols_verbose="vg_name,vg_attr,vg_extent_size,pv_count,lv_count,snap_count,vg_size,vg_free,vg_uuid,vg_profile" pvs_sort="pv_name" pvs_cols="pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free" pvs_cols_verbose="pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,dev_size,pv_uuid" segs_sort="vg_name,lv_name,seg_start" segs_cols="lv_name,vg_name,lv_attr,stripes,segtype,seg_size" segs_cols_verbose="lv_name,vg_name,lv_attr,seg_start,seg_size,stripes,segtype,stripesize,chunksize" pvsegs_sort="pv_name,pvseg_start" pvsegs_cols="pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,pvseg_start,pvseg_size" pvsegs_cols_verbose="pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,pvseg_start,pvseg_size,lv_name,seg_start_pe,segtype,seg_pe_ranges" vgs_cols_full="vg_all" pvs_cols_full="pv_all" lvs_cols_full="lv_all" pvsegs_cols_full="pvseg_all,pv_uuid,lv_uuid" segs_cols_full="seg_all,lv_uuid" vgs_sort_full="vg_name" pvs_sort_full="pv_name" lvs_sort_full="vg_name,lv_name" pvsegs_sort_full="pv_uuid,pvseg_start" segs_sort_full="lv_uuid,seg_start" mark_hidden_devices=1 } cache-mq.profile 0000444 00000001023 15025216466 0007605 0 ustar 00 # Demo configuration 'mq' cache policy # # Note: This policy has been deprecated in favor of the smq policy # keyword "default" means, setting is left with kernel defaults. # allocation { cache_pool_chunk_size = 64 cache_mode = "writethrough" cache_policy = "mq" cache_settings { mq { sequential_threshold = "default" # #nr_sequential_ios random_threshold = "default" # #nr_random_ios read_promote_adjustment = "default" write_promote_adjustment = "default" discard_promote_adjustment = "default" } } } thin-performance.profile 0000444 00000000120 15025216466 0011365 0 ustar 00 allocation { thin_pool_chunk_size_policy = "performance" thin_pool_zero = 0 } thin-generic.profile 0000444 00000000114 15025216466 0010503 0 ustar 00 allocation { thin_pool_chunk_size_policy = "generic" thin_pool_zero = 1 }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0 |
proxy
|
phpinfo
|
Settings