File tree 4 files changed +4
-45
lines changed
4 files changed +4
-45
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
# @param file_ensure
7
7
# Ensure the connection validation script is present
8
8
# @param validcon_script_path
9
- # Optional. Absolute path for the postgresql connection validation script.
9
+ # Deprecated: absolute path for the postgresql connection validation script that is now ensured absent .
10
10
# @param package_name
11
11
# Sets the name of the PostgreSQL client package.
12
12
# @param package_ensure
26
26
}
27
27
28
28
file { $validcon_script_path:
29
- ensure => $file_ensure ,
30
- content => file (' postgresql/validate_postgresql_connection.sh' ),
31
- owner => 0,
32
- group => 0,
33
- mode => ' 0755' ,
29
+ ensure => absent ,
34
30
}
35
31
}
Original file line number Diff line number Diff line change 23
23
# @param service_status Overrides the default status check command for your PostgreSQL service.
24
24
# @param default_database Specifies the name of the default database to connect with.
25
25
#
26
- # @param validcon_script_path Scipt path for the connection validation check.
26
+ # @param validcon_script_path Deprecated parameter for the scipt path for the connection validation check. This file will be ensured absent
27
27
#
28
28
# @param initdb_path Path to the initdb command.
29
29
# @param psql_path Sets the path to the psql command.
Original file line number Diff line number Diff line change 22
22
end
23
23
24
24
it 'has specified validate connexion' do
25
- expect ( subject ) . to contain_file ( '/opt/bin/my-validate-con.sh' ) . with ( ensure : 'file' ,
26
- owner : 0 ,
27
- group : 0 ,
28
- mode : '0755' )
25
+ expect ( subject ) . to contain_file ( '/opt/bin/my-validate-con.sh' ) . with ( ensure : 'absent' )
29
26
end
30
27
end
31
28
You can’t perform that action at this time.
0 commit comments