From: Frank Brehm Date: Mon, 18 Sep 2023 10:29:29 +0000 (+0200) Subject: saving uncommitted changes in /etc prior to apt run X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=cac71cb8ec5c2041f1ad8458f92a23ec0283540d;p=config%2Fns1%2Fetc.git saving uncommitted changes in /etc prior to apt run --- diff --git a/lvm/lvm.conf b/lvm/lvm.conf index d0b4fef..59cafb4 100644 --- a/lvm/lvm.conf +++ b/lvm/lvm.conf @@ -74,6 +74,7 @@ devices { # udev support for this setting to apply. # This configuration option has an automatic default value. # obtain_device_list_from_udev = 0 + obtain_device_list_from_udev = 1 # Configuration option devices/external_device_info_source. # Enable device information from udev. diff --git a/passwd b/passwd index 2bc3103..72547ec 100644 --- a/passwd +++ b/passwd @@ -10,7 +10,7 @@ mail:x:8:8:mail:/var/mail:/usr/sbin/nologin news:x:9:9:news:/var/spool/news:/usr/sbin/nologin uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin proxy:x:13:13:proxy:/bin:/usr/sbin/nologin -www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +www-data:x:33:33:www-data:/var/www:/bin/bash backup:x:34:34:backup:/var/backups:/usr/sbin/nologin list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin irc:x:39:39:ircd:/run/ircd:/usr/sbin/nologin diff --git a/passwd- b/passwd- index 8dda30d..2bc3103 100644 --- a/passwd- +++ b/passwd- @@ -32,5 +32,5 @@ _chrony:x:111:118:Chrony daemon:/var/lib/chrony:/bin/false nagios:x:112:119::/var/lib/nagios:/bin/false minecraft:x:1222:100:Minecraft server user:/home/minecraft:/bin/bash systemd-coredump:x:998:998:systemd Core Dumper:/:/sbin/nologin -repo.in:x:1112:100:Repo upload user:/home/repo.in:/bin/sh +repo.in:x:1112:100:Repo upload user:/home/repo.in:/bin/bash tcpdump:x:103:123::/nonexistent:/usr/sbin/nologin diff --git a/php/8.2/apache2/php.ini b/php/8.2/apache2/php.ini index b9503f2..d94d245 100644 --- a/php/8.2/apache2/php.ini +++ b/php/8.2/apache2/php.ini @@ -969,6 +969,10 @@ default_socket_timeout = 60 ; Module Settings ; ;;;;;;;;;;;;;;;;;;; +[apc] +apc.shm_size = 512M +apc.enable_cli = 1 + [CLI Server] ; Whether the CLI web server uses ANSI color coding in its terminal output. cli_server.color = On diff --git a/php/8.2/cli/php.ini b/php/8.2/cli/php.ini index 85ce247..aa2dffb 100644 --- a/php/8.2/cli/php.ini +++ b/php/8.2/cli/php.ini @@ -969,6 +969,10 @@ default_socket_timeout = 60 ; Module Settings ; ;;;;;;;;;;;;;;;;;;; +[apc] +apc.shm_size = 512M +apc.enable_cli = 1 + [CLI Server] ; Whether the CLI web server uses ANSI color coding in its terminal output. cli_server.color = On diff --git a/postgresql/13/main/postgresql.conf b/postgresql/13/main/postgresql.conf index e160284..3fc8188 100644 --- a/postgresql/13/main/postgresql.conf +++ b/postgresql/13/main/postgresql.conf @@ -60,7 +60,7 @@ external_pid_file = '/var/run/postgresql/13-main.pid' # write an extra PID fil # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) -port = 5432 # (change requires restart) +port = 5433 # (change requires restart) max_connections = 100 # (change requires restart) #superuser_reserved_connections = 3 # (change requires restart) unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories diff --git a/postgresql/13/main/start.conf b/postgresql/13/main/start.conf index b0f3256..5bbbe20 100644 --- a/postgresql/13/main/start.conf +++ b/postgresql/13/main/start.conf @@ -1,8 +1,5 @@ -# Automatic startup configuration -# auto: automatically start the cluster -# manual: manual startup with pg_ctlcluster/postgresql@.service only -# disabled: refuse to start cluster -# See pg_createcluster(1) for details. When running from systemd, -# invoke 'systemctl daemon-reload' after editing this file. +# This cluster was upgraded to a newer major version. The old +# cluster has been preserved for backup purposes, but is not started +# automatically. -auto +manual diff --git a/postgresql/15/main/pg_hba.conf b/postgresql/15/main/pg_hba.conf index f63d5d4..b6595d8 100644 --- a/postgresql/15/main/pg_hba.conf +++ b/postgresql/15/main/pg_hba.conf @@ -18,13 +18,12 @@ # # (The uppercase items must be replaced by actual values.) # -# The first field is the connection type: -# - "local" is a Unix-domain socket -# - "host" is a TCP/IP socket (encrypted or not) -# - "hostssl" is a TCP/IP socket that is SSL-encrypted -# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted -# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted -# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted +# The first field is the connection type: "local" is a Unix-domain +# socket, "host" is either a plain or SSL-encrypted TCP/IP socket, +# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a +# non-SSL TCP/IP socket. Similarly, "hostgssenc" uses a +# GSSAPI-encrypted TCP/IP socket, while "hostnogssenc" uses a +# non-GSSAPI socket. # # DATABASE can be "all", "sameuser", "samerole", "replication", a # database name, or a comma-separated list thereof. The "all" @@ -94,11 +93,11 @@ local all postgres peer # "local" is for Unix domain socket connections only local all all peer # IPv4 local connections: -host all all 127.0.0.1/32 scram-sha-256 +host all all 127.0.0.1/32 md5 # IPv6 local connections: -host all all ::1/128 scram-sha-256 +host all all ::1/128 md5 # Allow replication connections from localhost, by a user with the # replication privilege. local replication all peer -host replication all 127.0.0.1/32 scram-sha-256 -host replication all ::1/128 scram-sha-256 +host replication all 127.0.0.1/32 md5 +host replication all ::1/128 md5 diff --git a/postgresql/15/main/postgresql.conf b/postgresql/15/main/postgresql.conf index 6daf6e9..1ab5c39 100644 --- a/postgresql/15/main/postgresql.conf +++ b/postgresql/15/main/postgresql.conf @@ -24,8 +24,7 @@ # "postgres -c log_connections=on". Some parameters can be changed at run time # with the "SET" SQL command. # -# Memory units: B = bytes Time units: us = microseconds -# kB = kilobytes ms = milliseconds +# Memory units: kB = kilobytes Time units: ms = milliseconds # MB = megabytes s = seconds # GB = gigabytes min = minutes # TB = terabytes h = hours @@ -61,7 +60,7 @@ external_pid_file = '/var/run/postgresql/15-main.pid' # write an extra PID fil # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) -port = 5433 # (change requires restart) +port = 5432 # (change requires restart) max_connections = 100 # (change requires restart) #superuser_reserved_connections = 3 # (change requires restart) unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories @@ -86,14 +85,10 @@ unix_socket_directories = '/var/run/postgresql' # comma-separated list of direct #tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; # 0 selects the system default -#client_connection_check_interval = 0 # time between checks for client - # disconnection while running queries; - # 0 for never - # - Authentication - #authentication_timeout = 1min # 1s-600s -#password_encryption = scram-sha-256 # scram-sha-256 or md5 +#password_encryption = md5 # md5 or scram-sha-256 #db_user_namespace = off # GSSAPI using Kerberos @@ -106,7 +101,6 @@ ssl = on #ssl_ca_file = '' ssl_cert_file = '/etc/ssl/certs/ssl-cert-snakeoil.pem' #ssl_crl_file = '' -#ssl_crl_dir = '' ssl_key_file = '/etc/ssl/private/ssl-cert-snakeoil.key' #ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers #ssl_prefer_server_ciphers = on @@ -128,15 +122,13 @@ shared_buffers = 128MB # min 128kB # (change requires restart) #huge_pages = try # on, off, or try # (change requires restart) -#huge_page_size = 0 # zero for system default - # (change requires restart) #temp_buffers = 8MB # min 800kB #max_prepared_transactions = 0 # zero disables the feature # (change requires restart) # Caution: it is not advisable to set max_prepared_transactions nonzero unless # you actively intend to use prepared transactions. #work_mem = 4MB # min 64kB -#hash_mem_multiplier = 2.0 # 1-1000.0 multiplier on hash table work_mem +#hash_mem_multiplier = 1.0 # 1-1000.0 multiplier on hash table work_mem #maintenance_work_mem = 64MB # min 1MB #autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem #logical_decoding_work_mem = 64MB # min 64kB @@ -147,14 +139,13 @@ shared_buffers = 128MB # min 128kB # sysv # windows # (change requires restart) -dynamic_shared_memory_type = posix # the default is usually the first option +dynamic_shared_memory_type = posix # the default is the first option # supported by the operating system: # posix # sysv # windows # mmap # (change requires restart) -#min_dynamic_shared_memory = 0MB # (change requires restart) # - Disk - @@ -170,7 +161,7 @@ dynamic_shared_memory_type = posix # the default is usually the first option #vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) #vacuum_cost_page_hit = 1 # 0-10000 credits -#vacuum_cost_page_miss = 2 # 0-10000 credits +#vacuum_cost_page_miss = 10 # 0-10000 credits #vacuum_cost_page_dirty = 20 # 0-10000 credits #vacuum_cost_limit = 200 # 1-10000 credits @@ -183,17 +174,17 @@ dynamic_shared_memory_type = posix # the default is usually the first option # - Asynchronous Behavior - -#backend_flush_after = 0 # measured in pages, 0 disables #effective_io_concurrency = 1 # 1-1000; 0 disables prefetching #maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching #max_worker_processes = 8 # (change requires restart) -#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers #max_parallel_maintenance_workers = 2 # taken from max_parallel_workers +#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers +#parallel_leader_participation = on #max_parallel_workers = 8 # maximum number of max_worker_processes that # can be used in parallel operations -#parallel_leader_participation = on #old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate # (change requires restart) +#backend_flush_after = 0 # measured in pages, 0 disables #------------------------------------------------------------------------------ @@ -217,10 +208,9 @@ dynamic_shared_memory_type = posix # the default is usually the first option # fsync_writethrough # open_sync #full_page_writes = on # recover from partial page writes +#wal_compression = off # enable compression of full-page writes #wal_log_hints = off # also do full page writes of non-critical updates # (change requires restart) -#wal_compression = off # enables compression of full-page writes; - # off, pglz, lz4, zstd, or on #wal_init_zero = on # zero-fill new WAL files #wal_recycle = on # recycle WAL files #wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers @@ -235,25 +225,16 @@ dynamic_shared_memory_type = posix # the default is usually the first option # - Checkpoints - #checkpoint_timeout = 5min # range 30s-1d -#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0 -#checkpoint_flush_after = 256kB # measured in pages, 0 disables -#checkpoint_warning = 30s # 0 disables max_wal_size = 1GB min_wal_size = 80MB - -# - Prefetching during recovery - - -#recovery_prefetch = try # prefetch pages referenced in the WAL? -#wal_decode_buffer_size = 512kB # lookahead window used for prefetching - # (change requires restart) +#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0 +#checkpoint_flush_after = 256kB # measured in pages, 0 disables +#checkpoint_warning = 30s # 0 disables # - Archiving - #archive_mode = off # enables archiving; off, on, or always # (change requires restart) -#archive_library = '' # library to use to archive a logfile segment - # (empty string indicates archive_command should - # be used) #archive_command = '' # command to use to archive a logfile segment # placeholders: %p = path of file to archive # %f = file name only @@ -269,6 +250,7 @@ min_wal_size = 80MB # placeholders: %p = path of file to restore # %f = file name only # e.g. 'cp /mnt/server/archivedir/%f %p' + # (change requires restart) #archive_cleanup_command = '' # command to execute at every restartpoint #recovery_end_command = '' # command to execute at completion of recovery @@ -303,19 +285,20 @@ min_wal_size = 80MB # - Sending Servers - -# Set these on the primary and on any standby that will send replication data. +# Set these on the master and on any standby that will send replication data. #max_wal_senders = 10 # max number of walsender processes # (change requires restart) -#max_replication_slots = 10 # max number of replication slots - # (change requires restart) #wal_keep_size = 0 # in megabytes; 0 disables #max_slot_wal_keep_size = -1 # in megabytes; -1 disables #wal_sender_timeout = 60s # in milliseconds; 0 disables + +#max_replication_slots = 10 # max number of replication slots + # (change requires restart) #track_commit_timestamp = off # collect timestamp of transaction commit # (change requires restart) -# - Primary Server - +# - Master Server - # These settings are ignored on a standby server. @@ -327,7 +310,7 @@ min_wal_size = 80MB # - Standby Servers - -# These settings are ignored on a primary server. +# These settings are ignored on a master server. #primary_conninfo = '' # connection string to sending server #primary_slot_name = '' # replication slot on sending server @@ -347,7 +330,7 @@ min_wal_size = 80MB #hot_standby_feedback = off # send info from standby to prevent # query conflicts #wal_receiver_timeout = 60s # time that receiver waits for - # communication from primary + # communication from master # in milliseconds; 0 disables #wal_retrieve_retry_interval = 5s # time to wait before retrying to # retrieve WAL after a failed attempt @@ -368,26 +351,23 @@ min_wal_size = 80MB # - Planner Method Configuration - -#enable_async_append = on #enable_bitmapscan = on -#enable_gathermerge = on #enable_hashagg = on #enable_hashjoin = on -#enable_incremental_sort = on #enable_indexscan = on #enable_indexonlyscan = on #enable_material = on -#enable_memoize = on #enable_mergejoin = on #enable_nestloop = on #enable_parallel_append = on -#enable_parallel_hash = on -#enable_partition_pruning = on -#enable_partitionwise_join = off -#enable_partitionwise_aggregate = off #enable_seqscan = on #enable_sort = on +#enable_incremental_sort = on #enable_tidscan = on +#enable_partitionwise_join = off +#enable_partitionwise_aggregate = off +#enable_parallel_hash = on +#enable_partition_pruning = on # - Planner Cost Constants - @@ -396,11 +376,8 @@ min_wal_size = 80MB #cpu_tuple_cost = 0.01 # same scale as above #cpu_index_tuple_cost = 0.005 # same scale as above #cpu_operator_cost = 0.0025 # same scale as above -#parallel_setup_cost = 1000.0 # same scale as above #parallel_tuple_cost = 0.1 # same scale as above -#min_parallel_table_scan_size = 8MB -#min_parallel_index_scan_size = 512kB -#effective_cache_size = 4GB +#parallel_setup_cost = 1000.0 # same scale as above #jit_above_cost = 100000 # perform JIT compilation if available # and query more expensive than this; @@ -411,6 +388,10 @@ min_wal_size = 80MB # query is more expensive than this; # -1 disables +#min_parallel_table_scan_size = 8MB +#min_parallel_index_scan_size = 512kB +#effective_cache_size = 4GB + # - Genetic Query Optimizer - #geqo = on @@ -427,12 +408,12 @@ min_wal_size = 80MB #constraint_exclusion = partition # on, off, or partition #cursor_tuple_fraction = 0.1 # range 0.0-1.0 #from_collapse_limit = 8 -#jit = on # allow JIT compilation #join_collapse_limit = 8 # 1 disables collapsing of explicit # JOIN clauses +#force_parallel_mode = off +#jit = on # allow JIT compilation #plan_cache_mode = auto # auto, force_generic_plan or # force_custom_plan -#recursive_worktable_factor = 10.0 # range 0.001-1000000 #------------------------------------------------------------------------------ @@ -442,15 +423,14 @@ min_wal_size = 80MB # - Where to Log - #log_destination = 'stderr' # Valid values are combinations of - # stderr, csvlog, jsonlog, syslog, and - # eventlog, depending on platform. - # csvlog and jsonlog require - # logging_collector to be on. + # stderr, csvlog, syslog, and eventlog, + # depending on platform. csvlog + # requires logging_collector to be on. # This is used when logging to stderr: -#logging_collector = off # Enable capturing of stderr, jsonlog, - # and csvlog into log files. Required - # to be on for csvlogs and jsonlogs. +#logging_collector = off # Enable capturing of stderr and csvlog + # into log files. Required to be on for + # csvlogs. # (change requires restart) # These are only used if logging_collector is on: @@ -460,11 +440,6 @@ min_wal_size = 80MB # can include strftime() escapes #log_file_mode = 0600 # creation mode for log files, # begin with 0 to use octal notation -#log_rotation_age = 1d # Automatic rotation of logfiles will - # happen after that time. 0 disables. -#log_rotation_size = 10MB # Automatic rotation of logfiles will - # happen after that much log output. - # 0 disables. #log_truncate_on_rotation = off # If on, an existing log file with the # same name as the new log file will be # truncated rather than appended to. @@ -473,6 +448,11 @@ min_wal_size = 80MB # or size-driven rotation. Default is # off, meaning append to existing files # in all cases. +#log_rotation_age = 1d # Automatic rotation of logfiles will + # happen after that time. 0 disables. +#log_rotation_size = 10MB # Automatic rotation of logfiles will + # happen after that much log output. + # 0 disables. # These are relevant when logging to syslog: #syslog_facility = 'LOCAL0' @@ -480,7 +460,7 @@ min_wal_size = 80MB #syslog_sequence_numbers = on #syslog_split_messages = on -# This is only relevant when logging to eventlog (Windows): +# This is only relevant when logging to eventlog (win32): # (change requires restart) #event_source = 'PostgreSQL' @@ -534,23 +514,13 @@ min_wal_size = 80MB # are logged regardless of their duration; 1.0 logs all # statements from all transactions, 0.0 never logs -#log_startup_progress_interval = 10s # Time between progress updates for - # long-running startup operations. - # 0 disables the feature, > 0 indicates - # the interval in milliseconds. - # - What to Log - #debug_print_parse = off #debug_print_rewritten = off #debug_print_plan = off #debug_pretty_print = on -#log_autovacuum_min_duration = 10min # log autovacuum activity; - # -1 disables, 0 logs all actions and - # their durations, > 0 logs only - # actions running at least this number - # of milliseconds. -#log_checkpoints = on +#log_checkpoints = off #log_connections = off #log_disconnections = off #log_duration = off @@ -564,11 +534,9 @@ log_line_prefix = '%m [%p] %q%u@%d ' # special values: # %h = remote host # %b = backend type # %p = process ID - # %P = process ID of parallel group leader # %t = timestamp without milliseconds # %m = timestamp with milliseconds # %n = timestamp with milliseconds (as a Unix epoch) - # %Q = query ID (0 if none or not computed) # %i = command tag # %e = SQL state # %c = session ID @@ -581,8 +549,6 @@ log_line_prefix = '%m [%p] %q%u@%d ' # special values: # %% = '%' # e.g. '<%u%%%d> ' #log_lock_waits = off # log lock waits >= deadlock_timeout -#log_recovery_conflict_waits = off # log standby recovery conflict waits - # >= deadlock_timeout #log_parameter_max_length = -1 # when logging statements, limit logged # bind-parameter values to N bytes; # -1 means print in full, 0 disables @@ -596,7 +562,6 @@ log_line_prefix = '%m [%p] %q%u@%d ' # special values: # -1 disables, 0 logs all temp files log_timezone = 'Europe/Berlin' - #------------------------------------------------------------------------------ # PROCESS TITLE #------------------------------------------------------------------------------ @@ -610,24 +575,22 @@ cluster_name = '15/main' # added to process titles if nonempty # STATISTICS #------------------------------------------------------------------------------ -# - Cumulative Query and Index Statistics - +# - Query and Index Statistics Collector - #track_activities = on -#track_activity_query_size = 1024 # (change requires restart) #track_counts = on #track_io_timing = off -#track_wal_io_timing = off #track_functions = none # none, pl, all -#stats_fetch_consistency = cache +#track_activity_query_size = 1024 # (change requires restart) +#stats_temp_directory = '/var/run/postgresql/15-main.pg_stat_tmp' #does not exist anymore # - Monitoring - -#compute_query_id = auto -#log_statement_stats = off #log_parser_stats = off #log_planner_stats = off #log_executor_stats = off +#log_statement_stats = off #------------------------------------------------------------------------------ @@ -636,6 +599,10 @@ cluster_name = '15/main' # added to process titles if nonempty #autovacuum = on # Enable autovacuum subprocess? 'on' # requires track_counts to also be on. +#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. #autovacuum_max_workers = 3 # max number of autovacuum subprocesses # (change requires restart) #autovacuum_naptime = 1min # time between autovacuum runs @@ -681,11 +648,10 @@ cluster_name = '15/main' # added to process titles if nonempty # error #search_path = '"$user", public' # schema names #row_security = on -#default_table_access_method = 'heap' #default_tablespace = '' # a tablespace name, '' uses the default -#default_toast_compression = 'pglz' # 'pglz' or 'lz4' #temp_tablespaces = '' # a list of tablespace names, '' uses # only default tablespace +#default_table_access_method = 'heap' #check_function_bodies = on #default_transaction_isolation = 'read committed' #default_transaction_read_only = off @@ -694,16 +660,17 @@ cluster_name = '15/main' # added to process titles if nonempty #statement_timeout = 0 # in milliseconds, 0 is disabled #lock_timeout = 0 # in milliseconds, 0 is disabled #idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled -#idle_session_timeout = 0 # in milliseconds, 0 is disabled -#vacuum_freeze_table_age = 150000000 #vacuum_freeze_min_age = 50000000 -#vacuum_failsafe_age = 1600000000 -#vacuum_multixact_freeze_table_age = 150000000 +#vacuum_freeze_table_age = 150000000 #vacuum_multixact_freeze_min_age = 5000000 -#vacuum_multixact_failsafe_age = 1600000000 +#vacuum_multixact_freeze_table_age = 150000000 +#vacuum_cleanup_index_scale_factor = 0.1 # fraction of total number of tuples + # before index cleanup, 0 always performs + # index cleanup #bytea_output = 'hex' # hex, escape #xmlbinary = 'base64' #xmloption = 'content' +#gin_fuzzy_search_limit = 0 #gin_pending_list_limit = 4MB # - Locale and Formatting - @@ -735,9 +702,9 @@ default_text_search_config = 'pg_catalog.german' # - Shared Library Preloading - +#shared_preload_libraries = '' # (change requires restart) #local_preload_libraries = '' #session_preload_libraries = '' -#shared_preload_libraries = '' # (change requires restart) #jit_provider = 'llvmjit' # JIT library to use # - Other Defaults - @@ -745,7 +712,6 @@ default_text_search_config = 'pg_catalog.german' #dynamic_library_path = '$libdir' #extension_destdir = '' # prepend path when loading extensions # and shared objects (added by Debian) -#gin_fuzzy_search_limit = 0 #------------------------------------------------------------------------------ @@ -773,6 +739,7 @@ default_text_search_config = 'pg_catalog.german' #backslash_quote = safe_encoding # on, off, or safe_encoding #escape_string_warning = on #lo_compat_privileges = off +#operator_precedence_warning = off #quote_all_identifiers = off #standard_conforming_strings = on #synchronize_seqscans = on @@ -791,7 +758,6 @@ default_text_search_config = 'pg_catalog.german' #data_sync_retry = off # retry or panic on failure to fsync # data? # (change requires restart) -#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+) #------------------------------------------------------------------------------