summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlibrary/system/alternatives3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/system/alternatives b/library/system/alternatives
index 503f9745f1..7670b8f0d4 100755
--- a/library/system/alternatives
+++ b/library/system/alternatives
@@ -53,7 +53,6 @@ EXAMPLES = '''
alternatives: name=hadoop-conf link=/etc/hadoop/conf path=/etc/hadoop/conf.ansible
'''
-UPDATE_ALTERNATIVES = '/usr/sbin/update-alternatives'
DEFAULT_LINK_PRIORITY = 50
def main():
@@ -71,6 +70,8 @@ def main():
path = params['path']
link = params['link']
+ UPDATE_ALTERNATIVES = module.get_bin_path('update-alternatives',True)
+
current_path = None
all_alternatives = []