mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-26 15:55:56 +02:00
Update to 2021-12-01 19:13
This commit is contained in:
BIN
roles/common/files/MegaCli-8.07.14-1.noarch.rpm
Normal file
BIN
roles/common/files/MegaCli-8.07.14-1.noarch.rpm
Normal file
Binary file not shown.
10
roles/common/files/bash_aliases.sh
Normal file
10
roles/common/files/bash_aliases.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
export LS_OPTIONS='--color=auto'
|
||||
eval "`dircolors`"
|
||||
alias ls='ls $LS_OPTIONS'
|
||||
alias ll='ls $LS_OPTIONS -l'
|
||||
alias l='ls $LS_OPTIONS -lA'
|
||||
alias rm='rm -i'
|
||||
alias cp='cp -i'
|
||||
alias mv='mv -i'
|
1
roles/common/files/crond
Normal file
1
roles/common/files/crond
Normal file
@@ -0,0 +1 @@
|
||||
CRONDARGS="-s"
|
10
roles/common/files/fstrim_all
Normal file
10
roles/common/files/fstrim_all
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
/sbin/fstrim -v --all
|
||||
|
||||
# Proxmox container support
|
||||
if [ -x /usr/sbin/pct ]; then
|
||||
for CONTAINER in $(/usr/sbin/pct list | awk '/^[0-9]/ {print $1}'); do
|
||||
/sbin/fstrim -v /proc/$(lxc-info -n $CONTAINER -p | awk '{print $2}')/root
|
||||
done
|
||||
fi
|
BIN
roles/common/files/megacli_8.07.14-1_all.deb
Normal file
BIN
roles/common/files/megacli_8.07.14-1_all.deb
Normal file
Binary file not shown.
4
roles/common/files/vimrc.local_Debian
Normal file
4
roles/common/files/vimrc.local_Debian
Normal file
@@ -0,0 +1,4 @@
|
||||
let g:skip_defaults_vim=1
|
||||
set mouse-=a
|
||||
set background=dark
|
||||
syntax on
|
Reference in New Issue
Block a user