fix quotes in abra.sh commands
This commit is contained in:
parent
a6d3dcc3cf
commit
63f5ecd680
8
abra.sh
8
abra.sh
@ -9,21 +9,21 @@ reconfigure() {
|
||||
}
|
||||
|
||||
disable_basic_login() {
|
||||
run_rails_command("Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: false)")
|
||||
run_rails_command('Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: false)')
|
||||
reconfigure()
|
||||
}
|
||||
|
||||
enable_basic_login() {
|
||||
run_rails_command("Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: true)")
|
||||
run_rails_command('Gitlab::CurrentSettings.update!(password_authentication_enabled_for_web: true)')
|
||||
reconfigure()
|
||||
}
|
||||
|
||||
disable_signups() {
|
||||
run_rails_command("Gitlab::CurrentSettings.update!(signup_enabled: false)")
|
||||
run_rails_command('Gitlab::CurrentSettings.update!(signup_enabled: false)')
|
||||
reconfigure()
|
||||
}
|
||||
|
||||
enable_signups() {
|
||||
run_rails_command("Gitlab::CurrentSettings.update!(signup_enabled: true)")
|
||||
run_rails_command('Gitlab::CurrentSettings.update!(signup_enabled: true)')
|
||||
reconfigure()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user