Server IP : 85.214.239.14 / Your IP : 3.146.176.67 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/postgresql-common/t/ |
Upload File : |
# This test runs last since we are reinstalling postgresql-common, and we want # to avoid spoiling the other tests with any version skew. use strict; use lib 't'; use TestLib; use PgCommon; use Test::More tests => $PgCommon::rpm ? 1 : 15; if ($PgCommon::rpm) { pass 'No maintainer script tests on rpm'; exit; } my $v = $MAJORS[-1]; note -d "/run/systemd/system" ? "We are running systemd" : "We are not running systemd"; # create cluster program_ok 0, "pg_createcluster $v main --start"; # get postmaster PID my $postmaster_pid = `head -1 /var/lib/postgresql/$v/main/postmaster.pid`; chomp $postmaster_pid; ok $postmaster_pid > 0, "postmaster PID is $postmaster_pid"; # "upgrade" postgresql-common to check if postgresql.service is left alone program_ok 0, 'apt-get update -q', 0, ''; note `apt-cache policy postgresql-common`; program_ok 0, 'apt-get install -y --reinstall -o DPkg::Options::=--force-confnew postgresql-common', 0, ''; note `apt-cache policy postgresql-common`; # get postmaster PID again, compare my $postmaster_pid2 = `head -1 /var/lib/postgresql/$v/main/postmaster.pid`; chomp $postmaster_pid2; ok $postmaster_pid2 > 0, "postmaster PID is $postmaster_pid2"; is $postmaster_pid, $postmaster_pid2, "postmaster was not restarted"; # stop server, clean up, check for leftovers program_ok 0, "pg_dropcluster $v main --stop"; check_clean; # vim: filetype=perl