Hi all, it´s my first time on fedora forum,
My older automated instalation with kickstart works fine ( last sucess with FC13 )
After read about changes in service to systemctl, i chane my kickstart post scripts to be compatible with FC15+
But when i try to install on FC16, i found some complications inserting data to mysql on post install, my older script looks like:
service mysqld start # Starting MySql server
mysqladmin -u root create databasename # Creating Database
mysql -u root databasename < /folder/schema.sql# Inserting Data
mysqladmin -u root password newpassword # Changing password
on new one, i changed to
systemctl start mysqld.service # this raise an error that say: "Running in chroot, ignoring request"
mysqladmin -u root create databasename # Creating Database
mysql -u root databasename < /folder/schema.sql# Inserting Data
mysqladmin -u root password newpassword # Changing password
and i canot insert data into MySql at kickstart post install anymore.
how to solve this ?
i realy apreciate some help.
thanks..