Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 10, 2024
1 parent 38e48f9 commit 18d0c4e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
dest: /etc/rstudio/rserver.conf
owner: root
group: root
mode: 0644
mode: '0644'
notify: restart rstudio-server
tags:
- rstudio-server-configure-server
Expand All @@ -17,7 +17,7 @@
dest: /etc/rstudio/rsession.conf
owner: root
group: root
mode: 0644
mode: '0644'
notify: restart rstudio-server
tags:
- rstudio-server-configure-session
2 changes: 1 addition & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
state: directory
owner: root
group: root
mode: 0755
mode: '0755'
tags:
- rstudio-server-install-download
- rstudio-server-install-download-directory
Expand Down
3 changes: 2 additions & 1 deletion tests/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: localhost
- name: converge
hosts: localhost
connection: local
become: true
pre_tasks:
Expand Down
3 changes: 2 additions & 1 deletion tests/vagrant.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: all
- name: converge
hosts: all
remote_user: vagrant
become: true
pre_tasks:
Expand Down

0 comments on commit 18d0c4e

Please sign in to comment.