summaryrefslogtreecommitdiffstats
path: root/mga-useredit
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2023-12-13 18:38:13 -0800
committerDan Fandrich <dan@coneharvesters.com>2024-02-03 17:54:49 -0800
commit0227d4d3beee7c000d77c0c7c8aa1823f2372e4a (patch)
tree425198f5ac6588bd37d87c496a4eebeacbbbe012 /mga-useredit
parent85fa0aea48bff9340dffda6d136035f283863237 (diff)
downloadmgatools-0227d4d3beee7c000d77c0c7c8aa1823f2372e4a.tar
mgatools-0227d4d3beee7c000d77c0c7c8aa1823f2372e4a.tar.gz
mgatools-0227d4d3beee7c000d77c0c7c8aa1823f2372e4a.tar.bz2
mgatools-0227d4d3beee7c000d77c0c7c8aa1823f2372e4a.tar.xz
mgatools-0227d4d3beee7c000d77c0c7c8aa1823f2372e4a.zip
Add new scripts
These were being used on duvel.
Diffstat (limited to 'mga-useredit')
-rwxr-xr-xmga-useredit22
1 files changed, 22 insertions, 0 deletions
diff --git a/mga-useredit b/mga-useredit
new file mode 100755
index 0000000..892f793
--- /dev/null
+++ b/mga-useredit
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+cLDAP_URL="ldaps://ldap.mageia.org"
+cLDAP_BASE_DN="ou=People,dc=mageia,dc=org"
+
+if [ "x$USER" == "xroot" ]
+then
+ echo "Please what's your LDAP uid ?"
+ read -a vUID
+else
+ vUID=$USER
+fi
+
+if [ "x$1" == "x" ]
+then
+ echo "Please give the uid you want to edit ?"
+ read -a vEDIT_UID
+else
+ vEDIT_UID=$1
+fi
+
+/usr/bin/ldapvi -q --tls allow -h ${cLDAP_URL} -D "uid=${vUID},${cLDAP_BASE_DN}" -b "uid=${vEDIT_UID},${cLDAP_BASE_DN}"