This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create and refresh dh params | |
define profile::security::dhparams( | |
String $path = $name, | |
Integer $length, | |
$recreate_after = null, | |
Boolean $selinux = false, | |
$owner = 'root', | |
$group = 0, | |
) { | |
$tmpfile = "${dirname($path)}/.puppet-${basename($path)}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# PROVIDE: mysql | |
# REQUIRE: LOGIN | |
# KEYWORD: shutdown | |
# | |
# Add the following lines to /etc/rc.conf to enable mysqlmulti: | |
# | |
# mysqlmulti_enable (bool): Set it to "YES" to enable uwsgi | |
# Default is "NO". |