From: Maximilian Friedersdorff Date: Wed, 7 Aug 2019 10:05:21 +0000 (+0100) Subject: Also install things on ubuntu (same as debian) X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=3e09439332622ebb3ddbea9a9480a6396b9d17c4;p=max%2Fsaltfiles.git Also install things on ubuntu (same as debian) --- diff --git a/states/conky/ubuntu.sls b/states/conky/ubuntu.sls new file mode 100644 index 0000000..7c2f408 --- /dev/null +++ b/states/conky/ubuntu.sls @@ -0,0 +1,3 @@ +install conky: + pkg.installed: + - name: conky diff --git a/states/firefox/ubuntu.sls b/states/firefox/ubuntu.sls new file mode 100644 index 0000000..8074266 --- /dev/null +++ b/states/firefox/ubuntu.sls @@ -0,0 +1,3 @@ +install firefox: + pkg.installed: + - name: firefox diff --git a/states/git/ubuntu.sls b/states/git/ubuntu.sls new file mode 100644 index 0000000..1e11106 --- /dev/null +++ b/states/git/ubuntu.sls @@ -0,0 +1,3 @@ +install git: + pkg.installed: + - name: git diff --git a/states/mail/ubuntu.sls b/states/mail/ubuntu.sls new file mode 100644 index 0000000..a6bfc5c --- /dev/null +++ b/states/mail/ubuntu.sls @@ -0,0 +1,3 @@ +install mutt: + pkg.installed: + - name: mutt diff --git a/states/ntp/ubuntu.sls b/states/ntp/ubuntu.sls new file mode 100644 index 0000000..a3c8902 --- /dev/null +++ b/states/ntp/ubuntu.sls @@ -0,0 +1,10 @@ +install ntp: + pkg.installed: + - name: ntp + +run ntp service: + service.running: + - name: ntpd + - enable: True + - require: + - pkg: install ntp diff --git a/states/pass/ubuntu.sls b/states/pass/ubuntu.sls new file mode 100644 index 0000000..26dce04 --- /dev/null +++ b/states/pass/ubuntu.sls @@ -0,0 +1,5 @@ +install pass: + pkg.installed: + - pkgs: + - pass + - pass-otp diff --git a/states/qutebrowser/ubuntu.sls b/states/qutebrowser/ubuntu.sls new file mode 100644 index 0000000..f7b280d --- /dev/null +++ b/states/qutebrowser/ubuntu.sls @@ -0,0 +1,6 @@ +install qutebrowser: + pkg.installed: + - pkgs: + - qutebrowser + - qt5-wayland + - python-tldextract diff --git a/states/sway/ubuntu.sls b/states/sway/ubuntu.sls new file mode 100644 index 0000000..e8d2445 --- /dev/null +++ b/states/sway/ubuntu.sls @@ -0,0 +1,6 @@ +install sway: + pkg.installed: + - pkgs: + - sway + - swaylock + - swayidle diff --git a/states/termite/ubuntu.sls b/states/termite/ubuntu.sls new file mode 100644 index 0000000..8a3cfd1 --- /dev/null +++ b/states/termite/ubuntu.sls @@ -0,0 +1,3 @@ +install termite: + pkg.installed: + - name: termite diff --git a/states/tmux/ubuntu.sls b/states/tmux/ubuntu.sls new file mode 100644 index 0000000..610a9e3 --- /dev/null +++ b/states/tmux/ubuntu.sls @@ -0,0 +1,3 @@ +install tmux: + pkg.installed: + - name: tmux diff --git a/states/vim/ubuntu.sls b/states/vim/ubuntu.sls new file mode 100644 index 0000000..c780618 --- /dev/null +++ b/states/vim/ubuntu.sls @@ -0,0 +1,5 @@ +install vim: + pkg.installed: + - pkgs: + - vim + - vim-molokai diff --git a/states/zsh/ubuntu.sls b/states/zsh/ubuntu.sls new file mode 100644 index 0000000..5aa4147 --- /dev/null +++ b/states/zsh/ubuntu.sls @@ -0,0 +1,5 @@ +install zsh: + pkg.installed: + - pkgs: + - zsh + - zsh-completions