]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
Raccourcis pour voir et corriger les droits foireux dans /usr/scripts
authorVincent Le Gallic <legallic@crans.org>
Sun, 17 Nov 2013 21:12:15 +0000 (22:12 +0100)
committerVincent Le Gallic <legallic@crans.org>
Sun, 17 Nov 2013 21:12:15 +0000 (22:12 +0100)
chmods.sh [new file with mode: 0755]
findchmods.sh [new file with mode: 0755]

diff --git a/chmods.sh b/chmods.sh
new file mode 100755 (executable)
index 0000000..6b3ce20
--- /dev/null
+++ b/chmods.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# Pour donner les bons droits au réprtoire courant
+# bons droits == groupe adm, dir : ug+rws, file : ug+rw
+
+sudo chgrp adm .; sudo find . -type f -exec chmod ug+rw {} \; ; sudo find . -type d -exec chmod ug+rws {} \
diff --git a/findchmods.sh b/findchmods.sh
new file mode 100755 (executable)
index 0000000..c3d2b82
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+# Pour trouver les trucs qui n'ont pas les bons droits dans /usr/scripts/
+
+find /usr/scripts -group adm \! -perm -660 \! -regex '\(/usr/scripts/\(src\|var\|gestion/clef-wifi-kfet\).*\|.*\.pyc\)'  | less