From 2d44b62fefbbca7d5180bdeb24172941e283610b Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 28 Jan 2025 15:50:54 +0800 Subject: [PATCH] Update install.sh --- plugins/ldap/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ldap/install.sh b/plugins/ldap/install.sh index 08947027f..aadcea33b 100755 --- a/plugins/ldap/install.sh +++ b/plugins/ldap/install.sh @@ -23,13 +23,13 @@ Install_App() mkdir -p $serverPath/ladp apt install -y slapd ldap-utils - echo "${VERSION}" > $serverPath/ladp/version.pl + echo "${VERSION}" > $serverPath/ldap/version.pl echo "${VERSION}安装完成" } Uninstall_App() { - rm -rf $serverPath/ladp/version.pl + rm -rf $serverPath/ldap/version.pl echo "卸载ldap成功" }