summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-02 00:25:41 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-02 00:38:46 +0100
commitfa2f5c7dcc5afa6cdd04ae2ed5fde19baa725598 (patch)
tree6dd2cd0bc559b302a0bd1db640b481a1b5bbfc84
parentAdd mysql module. (diff)
downloadwebdav_server-fa2f5c7dcc5afa6cdd04ae2ed5fde19baa725598.tar.gz
webdav_server-fa2f5c7dcc5afa6cdd04ae2ed5fde19baa725598.tar.xz
Add profiles::mysql.
-rw-r--r--modules/profiles/manifests/mysql.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/profiles/manifests/mysql.pp b/modules/profiles/manifests/mysql.pp
new file mode 100644
index 0000000..01372d0
--- /dev/null
+++ b/modules/profiles/manifests/mysql.pp
@@ -0,0 +1,8 @@
+class profiles::mysql {
+ require ::mysql::server
+
+ mysql_user { 'root@localhost':
+ ensure => present,
+ plugin => 'unix_socket',
+ }
+}