6 lines
145 B
Bash
6 lines
145 B
Bash
|
#!/bin/bash -e
|
||
|
# this script is run during the image build
|
||
|
|
||
|
# delete keepalived default config file
|
||
|
rm /usr/local/etc/keepalived/keepalived.conf
|